摘要:
00.Python网络爬虫第三弹《爬取get请求的页面数据》 01.jupyter环境安装 02.Python网络爬虫第二弹《http和https协议》 03.Python网络爬虫第一弹《Python网络爬虫相关基础概念》 04.Python网络爬虫之requests模块(1) 05.Python网 阅读全文
摘要:
原文: https://blog.csdn.net/huima2017/article/details/81105883 windows10 激活方法 1、“以管理员身份”运行 依次输出以下命令: slmgr.vbs /upk 2、 接着输入以下命令: slmgr /ipk W269N-WFGWX- 阅读全文
摘要:
代码: # bytes转字符串方式一 b=b'\xe9\x80\x86\xe7\x81\xab' string=str(b,'utf-8') print(string) # bytes转字符串方式二 b=b'\xe9\x80\x86\xe7\x81\xab' string=b.decode() # 阅读全文