เพียงโพสต์สิ่งนี้เพื่อที่ฉันจะได้ค้นหาในภายหลังเพราะดูเหมือนว่าจะทำให้ฉันสะดุดอยู่เสมอ:
$ python3.2
Python 3.2 (r32:88445, Oct 20 2012, 14:09:50)
[GCC 4.5.2] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import curses
>>> print(curses.version)
b'2.2'
>>> print(str(curses.version))
b'2.2'
>>> print(curses.version.encode('utf-8'))
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
AttributeError: 'bytes' object has no attribute 'encode'
>>> print(str(curses.version).encode('utf-8'))
b"b'2.2'"
คำถาม: จะพิมพ์bytes
สตริงbinary ( ) ใน Python 3 โดยไม่มีb'
คำนำหน้าได้อย่างไร?
ที่เกี่ยวข้อง: จะเขียนไบต์ไปยังไฟล์ใน Python 3 โดยไม่รู้การเข้ารหัสได้อย่างไร?
—
jfs