
Python
xhz1234
这个作者很懒,什么都没留下…
展开
-
pygame安装过程出现找不到videodev.h的错误
pygame安装过程出现找不到videodev.h的错误原创 2014-11-20 23:33:56 · 2165 阅读 · 0 评论 -
Python3.5环境安装及使用 Speech问题解决
修改speech.py line59 修改import thread,改成import threading line157 修改print prompt,改成print(prompt) 对最后的函数_ensure_event_thread修改如下: class T(threading.Thread): def __init__(self): t原创 2015-10-24 17:02:53 · 10396 阅读 · 4 评论 -
Python中转到指定目录
使用os包的chdir函数 >>>import os #获取当前工作目录 >>>os.getcwd() #更改当前工作目录 >>>os.chdir(‘d:\’)原创 2015-10-24 17:09:56 · 9493 阅读 · 0 评论