最近在用Python处理中文字符串时,报出了如下错误: 1、原因 因为默认情况下,Python采用的是ascii编码方式,如下所示: 而Python在进行编码方式之间的转换时,会将 unicode 作为“中间编码”,但 unicode 最大只有 128 那么长,所以这里当尝试将 ascii 编码字符 ...
分类:
编程语言 时间:
2018-09-05 10:33:26
阅读次数:
287
centos7下使用python类库MySQL-python操作mysql。pip安装类库:pip install MySQL-python报错提示:mariadb EnvironmentError: mysql_config not found 安装mysql-devel:yum -y insta ...
分类:
数据库 时间:
2018-09-04 17:05:35
阅读次数:
637
所以在读取字典的时候,最好先判断类型,然后再查看它是否已经有这样的属性: type(mydict) == type({}) #检查不是字典 如果是字典,再看看有没有这样的属性:mydict.has_key('mykey') 1、 看看变量是否是字典 2、检查字典是否有对应的key值 if 'like ...
分类:
编程语言 时间:
2018-08-24 20:49:17
阅读次数:
268
在 "驱动地址" 下载该驱动网盘链接: "https://pan.baidu.com/s/1r0fNYnUVn1Rfbb0hsKMSxQ" 密码:5qgx ...
分类:
数据库 时间:
2018-08-17 23:27:30
阅读次数:
372
在window中 1:在Scripts文件夹下会出现一系列和pip有关的文件,DOS中到Scripts,运行:pip install mysql-python 2:报错:Microsoft Visual C++ 9.0 下载https://www.microsoft.com/en-us/downlo ...
分类:
数据库 时间:
2018-08-16 13:35:57
阅读次数:
148
Traceback (most recent call last): File "E:/2017work/2017年12月/Pytest/UnittestTest/TestTest.py", line 5, in <module> suite1=unittest.TestLoader().loadT ...
分类:
编程语言 时间:
2018-07-27 12:07:07
阅读次数:
1630
最近要使用django进行项目开发,需要使用mysql-python模块。 在本地搭建环境安装的时候却出现报错,Unable to find vcvarsall.bat 在网上找了很多资料,发现是window平台本身不带编译系统,而安装mysql-python需要进行编译。网上给出的办法是,安装vs ...
分类:
数据库 时间:
2018-07-25 15:09:23
阅读次数:
215
安装MySQL-python报错pymemcompat.h:10:20:error:Python.h:Nosuchfileordirectory缺少python-devel开发包参考链接:https://www.2cto.com/kf/201207/142889.html
分类:
数据库 时间:
2018-07-14 16:27:38
阅读次数:
143
AttributeError: module 'django.db.models' has no attribute 'SubfieldBase' http://www.guanggua.com/question/35166085-How-to-deal-with-SubfieldBase-has- ...
分类:
数据库 时间:
2018-05-08 14:46:56
阅读次数:
2645
>>> x=1.235 >>> int(x) 1 >>> str="fsgavfdbafdbntsbgbt" >>> len(str) 19 >>> >>> x=987456123 >>> str(x) 会报错'str' object is not callable。 str()是系统自带的,你不能 ...
分类:
编程语言 时间:
2018-04-26 01:04:40
阅读次数:
158