นี่เป็นปัญหาที่พบบ่อยดังนั้นนี่คือภาพประกอบที่ค่อนข้างละเอียด
สำหรับสตริงที่ไม่ใช่ Unicode (เช่นที่ไม่มีu
คำนำหน้าเช่นu'\xc4pple'
) ต้องถอดรหัสจากการเข้ารหัสดั้งเดิม ( iso8859-1
/ latin1
เว้นแต่จะแก้ไขด้วยsys.setdefaultencoding
ฟังก์ชันลึกลับ ) เป็นunicode
จากนั้นเข้ารหัสเป็นชุดอักขระที่สามารถแสดงอักขระที่คุณต้องการในกรณีนี้ฉัน 'd แนะนำUTF-8
.
ขั้นแรกนี่คือฟังก์ชั่นยูทิลิตี้ที่มีประโยชน์ซึ่งจะช่วยให้รูปแบบของสตริง Python 2.7 และ unicode สว่างขึ้น
>>> def tell_me_about(s): return (type(s), s)
สตริงธรรมดา
>>> v = "\xC4pple"
>>> tell_me_about(v)
(<type 'str'>, '\xc4pple')
>>> v
'\xc4pple'
>>> print v
?pple
การถอดรหัสสตริง iso8859-1 - แปลงสตริงธรรมดาเป็น Unicode
>>> uv = v.decode("iso-8859-1")
>>> uv
u'\xc4pple'
>>> tell_me_about(uv)
(<type 'unicode'>, u'\xc4pple')
>>> print v.decode("iso-8859-1")
Äpple
>>> v.decode('iso-8859-1') == u'\xc4pple'
True
ภาพประกอบเพิ่มเติมอีกเล็กน้อย - พร้อม“ Ä”
>>> u"Ä" == u"\xc4"
True
>>> "Ä" == u"\xc4"
False
>>> "Ä".decode('utf8') == u"\xc4"
True
>>> "Ä" == "\xc4"
False
การเข้ารหัสเป็น UTF
>>> u8 = v.decode("iso-8859-1").encode("utf-8")
>>> u8
'\xc3\x84pple'
>>> tell_me_about(u8)
(<type 'str'>, '\xc3\x84pple')
>>> u16 = v.decode('iso-8859-1').encode('utf-16')
>>> tell_me_about(u16)
(<type 'str'>, '\xff\xfe\xc4\x00p\x00p\x00l\x00e\x00')
>>> tell_me_about(u8.decode('utf8'))
(<type 'unicode'>, u'\xc4pple')
>>> tell_me_about(u16.decode('utf16'))
(<type 'unicode'>, u'\xc4pple')
ความสัมพันธ์ระหว่าง Unicode และ UTF และ latin1
>>> print u8
Äpple
>>> print u8.decode('utf-8')
Äpple
>>> print u16
���pple
>>> print u16.decode('utf16')
Äpple
>>> v == u8
False
>>> v.decode('iso8859-1') == u8
False
>>> u8.decode('utf-8') == v.decode('latin1') == u16.decode('utf-16')
True
ข้อยกเว้นของ Unicode
>>> u8.encode('iso8859-1')
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
UnicodeDecodeError: 'ascii' codec can't decode byte 0xc3 in position 0:
ordinal not in range(128)
>>> u16.encode('iso8859-1')
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
UnicodeDecodeError: 'ascii' codec can't decode byte 0xff in position 0:
ordinal not in range(128)
>>> v.encode('iso8859-1')
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
UnicodeDecodeError: 'ascii' codec can't decode byte 0xc4 in position 0:
ordinal not in range(128)
หนึ่งจะได้รับรอบเหล่านี้โดยการแปลงจากการเข้ารหัสที่เฉพาะเจาะจง (ละติน-1 utf8, UTF16) เพื่อ Unicode u8.decode('utf8').encode('latin1')
เช่น
บางทีเราอาจวาดหลักการและลักษณะทั่วไปดังต่อไปนี้:
- ประเภท
str
คือชุดของไบต์ซึ่งอาจมีการเข้ารหัสแบบใดแบบหนึ่งเช่น Latin-1, UTF-8 และ UTF-16
- ประเภท
unicode
คือชุดของไบต์ที่สามารถแปลงเป็นการเข้ารหัสจำนวนเท่าใดก็ได้โดยทั่วไปมักเป็น UTF-8 และละติน -1 (iso8859-1)
print
คำสั่งมีตรรกะของตัวเองสำหรับการเข้ารหัส , ชุดsys.stdout.encoding
และผิดนัด UTF-8
- เราต้องถอดรหัส a
str
to unicode ก่อนที่จะแปลงเป็นการเข้ารหัสอื่น
แน่นอนการเปลี่ยนแปลงทั้งหมดนี้ใน Python 3.x.
หวังว่าจะส่องสว่าง
อ่านเพิ่มเติม
และคำพูดที่เป็นภาพประกอบโดย Armin Ronacher: