“Python decode()方法”的版本间的差异

来自linux中国网wiki
跳到导航 跳到搜索
(导入1个版本)
第1行: 第1行:
  
 
Python decode()方法以 encoding 指定的编码格式解码字符串。默认编码为字符串编码
 
Python decode()方法以 encoding 指定的编码格式解码字符串。默认编码为字符串编码
 +
 +
encode() 方法为字符串类型(str)提供的方法,用于将 str 类型转换成 bytes 类型,这个过程也称为“编码”。
  
 
例子
 
例子
第19行: 第21行:
 
[http://www.runoob.com/python/att-string-decode.html Python 解码字符串 decode()方法]
 
[http://www.runoob.com/python/att-string-decode.html Python 解码字符串 decode()方法]
  
[http://www.runoob.com/python/att-string-encode.html Python 编码字符串encode()方法]
+
[https://www.w3school.com.cn/python/ref_string_encode.asp Python 编码字符串encode()方法]

2021年7月11日 (日) 14:55的版本

Python decode()方法以 encoding 指定的编码格式解码字符串。默认编码为字符串编码

encode() 方法为字符串类型(str)提供的方法,用于将 str 类型转换成 bytes 类型,这个过程也称为“编码”。

例子

In [38]: dic["温度"] = items[0][3]

In [39]: dic["温度"]
Out[39]: '17 ~ 27\xe2\x84\x83'

In [42]: print (dic["温度"].decode('utf-8'))
17 ~ 27℃

In [50]:  print (dic["天气"].decode(encoding='utf-8'))
晴

参考

Python 解码字符串 decode()方法

Python 编码字符串encode()方法