查看“Python decode()方法”的源代码
←
Python decode()方法
跳到导航
跳到搜索
因为以下原因,您没有权限编辑本页:
您所请求的操作仅限于该用户组的用户使用:
用户
您可以查看与复制此页面的源代码。
Python decode()方法以 encoding 指定的编码格式解码字符串。默认编码为字符串编码 encode() 方法为字符串类型(str)提供的方法,用于将 str 类型转换成 bytes 类型,这个过程也称为“编码”。 例子 <pre> 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')) 晴 </pre> =参考= [http://www.runoob.com/python/att-string-decode.html Python 解码字符串 decode()方法] [https://www.w3school.com.cn/python/ref_string_encode.asp Python 编码字符串encode()方法]
返回至
Python decode()方法
。
导航菜单
个人工具
登录
名字空间
页面
讨论
变种
视图
阅读
查看源代码
查看历史
更多
搜索
导航
首页
我的导航
关于我
shell
python
ops
linuxchina.net
blog.linuxchina
最近更改
随机页面
帮助
工具
链入页面
相关更改
特殊页面
页面信息