Python
若月若水
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
使用py2exe生成独立的exe文件
今天写一个python小脚本,在windows下将当前状态下,所有的task的名字输出到一个文件里,然后将这个脚本转化成exe文件。 先看一下python脚本TaskNameList.py: import subprocess # running the command "tasklist" in cmd.exe popen = subprocess.Popen("taskl...2010-09-02 15:01:06 · 230 阅读 · 0 评论 -
yield python
今天用到yield表达式了,找了一篇不错的讲解,贴在这个供自己和大家参考: Shortcut to Grokking yield When you see a function with yield statements, apply this easy trick to understand what will happen: Insert a line result = [...原创 2010-09-03 15:49:05 · 188 阅读 · 0 评论
分享