随笔分类 - python
摘要:在安装第三方库的时候,Python报错: ReadTimeoutError: HTTPSConnectionPool(host='files.pythonhosted.org', port=443): Read timed out. 解决方法如下: 输入指令: pip --default-timeo
阅读全文
摘要:python处理图像需要用到PIL类库 Mac安装PIL 推荐使用pip工具安装 现在已经用Pillow代替PIL,在使用上没有区别,API都是相同的 Pillow类库依赖另一个模块:multiprocessing 安装步骤: 使用命令sudo easy_install pip安装pip 使用命令s
阅读全文
摘要:1 int(x [,base ]) 将x转换为一个整数 2 long(x [,base ]) 将x转换为一个长整数 3 float(x ) 将x转换到一个浮点数 4 complex(real [,imag ]) 创建一个复数 5 str(x ) 将对象 x 转换为字符串 6 repr(x ) 将对象 x 转换为表达式字符串 7 eval(str ) 用来计算在字符串中的有效Python表达式,并返
阅读全文