python
free_ant
phper,虽累,却乐在其中!
展开
-
python RuntimeError: dictionary changed size during iteration
for k in dictVar dictVar.pop(k)python 遍历一个dict、set类型的同时,并且在改变这个变量的长度,这时候就会抛错RuntimeError: dictionary changed size during iteration解决方法 python 2.xfor k in dictVar.keys()python 3.xfor k in list(dict原创 2016-10-18 17:18:16 · 1065 阅读 · 0 评论 -
Python3.x 进阶之路-翻译模块
Git 地址 python 翻译模块该模块主要功能为在linux系统下,通过命令行方式快速进行中英文翻译;在window doc模式下由于编码问题暂不支持英文译中文;具体用法如下:python translate.py chinesepython translate.py -z 中文该翻译模块主要依赖模块为:urllib、json、getopt、sys、xml、colorama涉及知识点归纳:字原创 2017-07-17 09:41:47 · 998 阅读 · 0 评论