반응형 python str to bytearry1 Python 문자열을 바이트 배열로 변환 파이썬에서 문자열을 바이트 배열로 변환하는 방법 바꿀문자열.encode("utf-8")을 하면 쉽게 바이트 배열로 변환할 수 있다 변환하는 함수를 작성 def stringToAsciiByteArray(self,str): try: b = str.encode("utf-8") return b except Exception as e: print('Error : ', e) return None 출력하는 코드작성 class Test: def stringToAsciiByteArray(self,str): try: b = str.encode("utf-8") return b except Exception as e: print('Connect Error : ', e) return None def __init__(self):.. 2021. 8. 24. 이전 1 다음 반응형