python中unicode编码转换为中文

日期:2022-09-02 22:50:13 作者:磊落不羁 栏目:语法字符串 评论(0)
我们使用python中,遇到爬取网站情况,用到unicode编码,我们需要将它转换为中文,unicode编码转换为中文的方法有四种:使用unicode_escape 解码、使用encode()方法转换,再调用bytes.decode()转换为字符串形式、 使用json.loads 解码(为json 格式)、使用eval(遇到Unicode是通过requests在网上爬取的时候)。具体内容请看本文。方法一:使用unicode_escape 解码unicode = b'\\u4f60\\u597d're = unicode.decode(&q...

修改python下载源 方法 以及常见的库

日期:2022-02-10 14:45:42 作者:磊落不羁 栏目:语法字符串 评论(0)
第一种方式-pip config set global.index-url https://mirrors.aliyun.com/pypi/simple/附国内常用镜像源:阿里云:https://mirrors.aliyun.com/pypi/simple/中国科技大学:https://pypi.mirrors.ustc.edu.cn/simple/清华大学:https://pypi.tuna.tsinghua.edu.cn/simple/豆瓣(douban) http://pypi.douban.com/simple/原始 https://pypi.p...

python几个命令

日期:2022-02-07 15:24:41 作者:磊落不羁 栏目:语法字符串 评论(0)
1. 查看本机是否安装pythonpython -version2. 查看安装位置import sys sys.executable3.更新pip:python -m pip install --upgrade pip4.使用国内豆瓣镜像pip install wxPython -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com  #可视化界面pip ins...