
python
还没想好昵称
越努力,越幸运。
展开
-
Unable to locate package python-pip
Unable to locate package python-pip传送门由此进:Installation — pip 9.0.0 documentation原创 2016-11-06 21:55:48 · 20005 阅读 · 0 评论 -
python字符串前'r'的用法
python字符串前’r’的用法本文转载自:python学习之 字符串前’r’的用法 - Crazy_yiner - 博客园在打开文件的时候open(r'c:\\....')加’r’和不加’r’是有区别的‘r’是防止字符转义的 如果路径中出现’\t’的话 不加r的话\t就会被转义 而加了’r’之后’\t’就能保留原有的样子在字符串赋值的时候 前面加’r’可以防止字符串在时候的时候不被转义 原理是在转转载 2016-11-28 19:39:38 · 734 阅读 · 0 评论 -
python执行系统命令
python执行系统命令可以使用如下几种方法:os.system()os.popen()subprocess.Popen()commands.getstatusoutput() // windows平台不可用。更多的介绍可以参考这里:python执行系统命令的方法 :os.system(),subprocess.popen(),commands - 白杨的日志 - 网易博客原创 2016-11-28 18:16:24 · 741 阅读 · 0 评论 -
Python正则表达式
Python正则表达式看这两篇参考文档。参考文档:Python正则表达式指南 - AstralWind - 博客园Python的regex模块——更强大的正则表达式引擎 - animalize - 博客园转载 2016-11-28 20:43:40 · 532 阅读 · 0 评论 -
unittest RuntimeWarning: Parent module '' not found while handling absolute import
unittest RuntimeWarning: Parent module ” not found while handling absolute import本文部分转载自:pycharm 单元测试失败 not found while handling absolute import-IT大道Pycharm 2016.2执行单元测试遇到如下问题: > RuntimeWarning: Pare转载 2016-11-30 16:50:47 · 4181 阅读 · 0 评论 -
python类型转换
python类型转换本文转载自:python各种类型转换-int,str,char,float,ord,hex,oct等 - 要不,单步调试走起? - 博客频道 - youkuaiyun.comint(x, base) # 将x转换为一个整数,base参数可选long(x, base) # 将x转换为一个长整数,base参数可选float(x)转载 2017-03-31 15:05:21 · 691 阅读 · 0 评论 -
python编码转换
python转换编码把其他编码转换为unicode,比如转换utf-8编码:unicode_text = unicode(utf8_text, 'utf-8')把unicode编码转换为其他编码,比如gb18030编码:gb18030_text = unicode_text.encode('gb18030')以上两者结合,可以转换utf-8到gb18030编码:gb18030_text = unic原创 2017-03-31 13:12:22 · 1225 阅读 · 0 评论 -
Debugger speedups using cython not found
Debugger speedups using cython not foundPython 出现如下错误: Complete output from command python setup.py egg_info: warning: Debugger speedups using cython not found. Run ‘”/usr/local/bin/python2.7...原创 2018-04-27 02:10:29 · 2130 阅读 · 1 评论