
Python
心心念念@
这个作者很懒,什么都没留下…
展开
-
python报错ImportError: cannot import name ‘Image‘ from ‘PIL‘ 的时候大多数情况下是由于PIL版本和当前python的版本出现了不兼容
报错: ImportError: cannot import name ‘Image’ from ‘PIL’ 的时候大多数情况下是由于PIL版本和当前python的版本不兼容。1、卸载2、重新安装pip install "pillow<7.0.0"原创 2020-11-27 09:38:43 · 8432 阅读 · 3 评论 -
使用Python爬取天气网2013-2019天气数据
使用Python爬取天气网天气数据使用Python的requests 和BeautifulSoup模块,Python 3.7可在命令行中直接使用pip进行模块安装。 # pip install requests # pip install bs4爬取云南省曲靖市2013-2018年气象数据代码如下:...原创 2019-09-10 20:43:43 · 5041 阅读 · 27 评论