
Python
root_miss
态度决定命运,细节决定成功
-
转载 Python version 2.7 required, which was not found in the registry 报错处理
windows安装MySQLdb是报错 "Python version 2.7 required, which was not found in the registry" 编写一下脚本内容如下运行import sys from _winreg import * # tweak as necessaryversion = sys.version[:3]installp...2018-08-31 10:59:5298
0
-
原创 python在windows下连接mysql数据库
一,安装MySQL-python python 连接mysql数据库需要 Python interface to Mysql包,包名为MySQL-python,PyPI上现在到了1.2.5版本。MySQL-python在windows下是通过.exe文件的installer安装的,前提是已经安装的python需要写入注册表,参考这篇文章:windows安装python2.7后的注...2018-08-31 13:53:22404
0
-
原创 Python CMD 中文乱码处理
抬头加 #coding=utf-8引入 import systype=sys.getfilesystemencoding()然后给有中文输出的地方加上 .decode('utf-8').encode(type)例如:完成2018-08-30 10:49:303969
0