- isinstance(im,PIL.BmpImagePlugin.DibImageFile): 在3.6版本中,需要修改为:isinstance(im,Image.Image):
-
Python3.6 中不能使用 import urllib2 都已经合并了。直接使用:import urllib.request
-
python错误 module 'urllib' has no attribute 'request' 同上
-
在3.7版本中发现的问题:安装keyboard成功 ,执行中提示。 ModuleNotFoundError: No module named 'keyboard',换成3.6就好了
- 默认没有安装pip, 到python home目录的script下执行 目录> easy_install.exe pip
卸载pip :python -m pip uninstall pip
- keyboard 不能直接安装,需先下载再安装,安装命令如:
pip +install+somewhat.whl, pip install cvxopt-1.1.9-cp36-cp36m-win32.whl
调用:urllib.urlopen(url)
报错:AttributeError: 'module' object has no attribute 'urlopen'
原因:
1,官方文档的解释:
官方3.0版本已经把urllib2,urlparse等五个模块都并入了urllib中,也就是整合了。
2,正确的使用方法:
import urllib.request url = "http://www.baidu.com" get = urllib.request.urlopen(url).read() print(get)
环境:
操作系统:win7 旗舰版
语言:python3.4
文本编辑器:vim、notepad++
报错:SyntaxError: (unicode error) 'utf-8' codec can't decode byte 0xb4 in position 0:invalid start byte
说明:我一开是是使用vim编辑器写python程序。当在使用三引号'''中文字符串,例如('''大小中等'''),之后运行就报错了。
实验解决过程:
错误过程:
创建文件test.py。python代码:
#!/usr/bin/env python
# -*- coding:utf-8 -*-
'''
大小中等
'''
运行报错:
E:\Program Files\python3.4\01jobs>python test.py
File "test.py", line 9
'''
SyntaxError: (unicode error) 'utf-8' codec can't decode byte 0xb4 in position 0:
invalid start byte
基本知识:在python中默认的编码格式是 utf-8。所以怎么会报不能按 utf-8来解码
问题的解决:
使用notepad++打开test.py发现文件存储的格式是ANSI
只要将保存文件的格式换成UTF-8就好了
只用notepad++打开test.py >> 菜单栏Encoding(编码)>> Convert to UTF-8(转化成utf-8)
在运行test.py问题解决