
Python
文章平均质量分 73
xzbaimildcat
这个作者很懒,什么都没留下…
展开
-
Errors and Exceptions
http://docs.python.org/3.2/tutorial/errors.html#errors-and-exceptions原创 2013-02-18 19:45:36 · 367 阅读 · 0 评论 -
关于 python中的.pyc 文件
.py源文件在执行时会首先被编译成.pyc(compiled py)文件,.pyc文件中存放着byte code,可以直接被PVM(The Python Virtual Machine )执行。如果pyc文件存在,那么下次执行相应的py文件时,会直接执行pyc文件,执行速度较第一次执行py文件时会快一些。借用learning python一书中的描述:Byte code is the原创 2013-03-18 22:34:14 · 1444 阅读 · 0 评论