当前分类:python>>正文

Python Decoding: 解码Python中的数据类型

来源:互联网   更新时间:2023年7月20日  

Python 笔记

一、字符串解码

str_demo = b'\xe4\xbd\xa0\xe5\xa5\xbd'
str_decode = str_demo.decode(encoding='utf-8')
print(str_decode)
你好

二、字节解码

byte_demo = b'\xe4\xbd\xa0\xe5\xa5\xbd'
byte_decode = byte_demo.decode(encoding='utf-8')
print(byte_decode)
你好

三、JSON解码

json_demo = '{"name": "Tom", "age": 18, "sex": "male"}'
import json

json_decode = json.loads(json_demo)
print(json_decode)
{'name': 'Tom', 'age': 18, 'sex': 'male'}

四、结语

本文固定链接:https://6yhj.com/leku-p-4949.html  版权所有,转载请保留本地址!
[猜你喜欢]

标签: 百度爬虫