Python
Peithon
一个正在努力学习的菜鸟
展开
-
Python: unindent does not match any outer indentation level错误
IndentationError: unindent does not match any outer indentation level今天在写一道Web题时,百思不得解,所以去官方Copy了一段exp,然后放在本地运行时就出现了IndentationError: unindent does not match any outer indentation level这个错误 当时使用的...原创 2018-04-29 20:05:52 · 520 阅读 · 0 评论 -
Python: cannot import name 'quote' from 'urllib' 错误
ImportError: cannot import name ‘quote’ from ‘urllib’当我使用python 3.7导入quote时出现ImportError: cannot import name 'quote' from 'urllib',查了一下urllib模块文档 在Python 3.x中,我们需要导入urllib.parse.quote时: 使用from url...原创 2018-04-29 20:37:03 · 26291 阅读 · 0 评论 -
CentOS7安装pip及PIL
最近在做题的过程中了解到Python的PIL库,所以在本地的CentOS7下安装了PIL 1.安装EPEL源# yum -y install epel-release2.安装pip# yum -y install python-pip3.对pip进行升级# pip install --upgrade pip4.安装缺少类库及PIL# yum -y ...原创 2018-06-06 19:12:05 · 1874 阅读 · 0 评论