当前位置 : 主页 > 编程语言 > python >

Python中数据类型的转换

来源:互联网 收集:自由互联 发布时间:2022-07-22
bytes--str a="hello" #str字符型 #str转换为bytes类型 b=a.encode("utf-8") 或 b=bytes(a,encoding="utf-8") #bytes类型转换为str类型 c=b.decode("utf-8") 或 c=str(b,encoding="utf-8")

bytes<-->str

a="hello" #str字符型

#str转换为bytes类型
b=a.encode("utf-8") 或 b=bytes(a,encoding="utf-8")

#bytes类型转换为str类型
c=b.decode("utf-8") 或 c=str(b,encoding="utf-8")

 



上一篇:Python中的socket网络模块
下一篇:没有了
网友评论