Python
-
wifi 신호세기Python/Raspberry Pi 2021. 12. 1. 12:15
sudo iw wlan0 scan|grep -E 'SSID|signal' -30dbm > -60dbm
-
-
-
int.from_bytes pythonPython/기초 2021. 10. 22. 10:03
classmethod int.from_bytes(bytes, byteorder, *, signed=False) 주어진 바이트 배열로 표현되는 정수를 돌려줍니다. >>> int.from_bytes(b'\x00\x10', byteorder='big') 16 int.from_bytes(b'\x00\x10', byteorder='little') 4096 int.from_bytes(b'\xfc\x00', byteorder='big', signed=True) -1024 int.from_bytes(b'\xfc\x00', byteorder='big', signed=False) 64512 int.from_bytes([255, 0, 0], byteorder='big') 16711680 인자 bytes 는 바이트열류 객체 ..
-
list 나눠서 출력Python/기초 2021. 10. 20. 15:57
#10개씩 출력 for i in range(0, len(Cube_Finded), 10): print(Cube_Finded[i:i+10]) # n개씩 출력 def list_chunk(lst, n): return [lst[i:i+n] for i in range(0, len(lst), n)] list_test = list(range(1,32)) print("분할 전 : ", list_test) list_chunked = list_chunk(list_test, 7) print("분할 후 : ", list_chunked) # 출력 # 분할 전 : [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26..
-
python main함수 변수Python/기초 2021. 10. 20. 14:56
1. 전역 변수 참조 def A(): print(cnt) #1 def B(): if cnt == 5: #2 print(cnt) #3 if __name__ == "__main__": cnt = 5 A() B() print(cnt) - python에서 main에서 선언한 변수의 경우 전역변수가 된다. - 함수 A, B에서 cnt가 자신의 함수에서 선언한 지역변수인지 우선 확인한다. - 함수 내에서 선언한 경우가 없을 경우 전역변수로 사용한다.(main에서도 cnt를 선언하지 않았을 경우는 에러가 발생) - A,B 모두 cnt를 선언한 적이 없기 때문에 #1, #2, #3 모두 main에서 선언한 전역변수 cnt를 참조한다. 출처: https://www.landlordgang.xyz/26 [Python] 지역..
-