TypeError: 'str'은 버퍼 인터페이스를 지원하지 않습니다
질문:
언제 Python의 gzip.open 함수를 사용하여 문자열을 압축하려고 하면 오류가 발생합니다. 던져짐:
TypeError: 'str' does not support the buffer interface
이 문제는 어떻게 해결할 수 있습니까?
답변:
Python 3 업그레이드: Python에서 3, 문자열은 유니코드 객체이며 버퍼 인터페이스가 없습니다. 문제를 해결하려면 출력 파일에 쓰기 전에 문자열을 바이트로 변환해야 합니다:
plaintext = input("Please enter the text you want to compress") filename = input("Please enter the desired filename") with gzip.open(filename + ".gz", "wb") as outfile: outfile.write(plaintext.encode())
버퍼 호환성: 이전 버전의 Python과의 호환성을 보장하려면 인코딩을 명시적으로 지정하세요.
outfile.write(plaintext.encode('utf-8'))
위 내용은 TypeError를 해결하는 방법: Python에서 gzip.open을 사용할 때 \'str\'이 버퍼 인터페이스를 지원하지 않습니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!