반응형 파이썬 형변환1 [Python] int정수형을 2byte 배열로 변환 파이썬에서 int형 정수를 byte로 변환하는 코드 def get2Byte_Int(self,data): convertBytes = bytearray(2) convertBytes[0] = ((data>>8) & 0x000000ff) convertBytes[1] = (data & 0x000000ff) return convertBytes 결과를 확인 하는 코드를 작성한다 class Test: def get2Byte_Int(self,data): convertBytes = bytearray(2) convertBytes[0] = ((data>>8) & 0x000000ff) convertBytes[1] = (data & 0x000000ff) return convertBytes def __init__(self): pr.. 2021. 8. 2. 이전 1 다음 반응형