Python 3.1 快速導覽 - 字串型態的 encode()

字串 (string) 型態 (type) 的 encode() 方法 (method) ,回傳 encoding 版本的 bytes 物件

方法描述
str.encode(encoding="utf-8", errors="strict")回傳 encoding 版本的 bytes 物件


預設的 encoding 為 "utf-8" , errors 預設為 "strict" ,也可以是 "ignore" 、 "replace" 、 "xmlcharrefreplace" 、 "backslashreplace" 之一。


舉例示範如下
a = "Free your mind."
b = "Welcome to the desert... of the real."
c = "What is real? How do you define real? "
d = "There is no spoon."

print(a)
print(a.encode())
print()

print(b)
print(b.encode())
print()

print(c)
print(c.encode())
print()

print(d)
print(d.encode())
print()

# 《程式語言教學誌》的範例程式
# http://pydoing.blogspot.com/
# 檔名:encode.py
# 功能:示範 Python 程式 
# 作者:張凱慶
# 時間:西元 2010 年 12 月


執行結果如下



中英文術語對照
字串string
型態type
方法method


內建型態




沒有留言: