首页 > Web开发 > 详细

encode 和 decode 的使用

时间:2020-05-07 19:45:32      阅读:39      评论:0      收藏:0      [点我收藏+]
txt = 我是字符串
txt_encode = txt.encode()
print(txt)
# 我是字符串
print(txt_encode)
# b‘\xe6\x88\x91\xe6\x98\xaf\xe5\xad\x97\xe7\xac\xa6\xe4\xb8\xb2‘
print(type(txt))
# <class ‘str‘>
print(type(txt_encode))
# <class ‘bytes‘>
txt_copy = txt_encode.decode( )
print(txt_copy)
# 我是字符串
print(type(txt_copy))
# <class ‘str‘>

# str->bytes encode
# bytes->str decode

2020-05-07

encode 和 decode 的使用

原文:https://www.cnblogs.com/hany-postq473111315/p/12845094.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!