Python中decode和encode如何使用?
863次观看
标签:
如何使用
Python
decode
老师回答
1、decode的作用是将其他编码的字符串转换成unicode编码
将 bytes 类型转换为 str 类型(b.decode())
2、encode的作用是将unicode编码转换成其他编码的字符串
将 str 类型转换为 bytes 类型(str.encode())
将 str 类型转换为 bytes 类型(str.)
bytes to str
3、使用
字符串通过编码转换成字节码,字节码通过解码成为字符串
encode:str –> bytes
decode:bytes – > str
直接上代码:
import sys
print('目前系统的编码为:',sys.getdefaultencoding())
name='小明'
print(type(name))#首先我们来打印下转码前的name类型,因为它是str,所以可以通过encode来进行编码
name1=name.encode('utf-8')
print(name1)
输出
目前系统的编码为: utf-8
b'xe5xb0x8fxe6x98x8e'
©本文版权归环球青藤所有,任何形式转载请联系我们。
免费直播
精选课程
相关推荐