python 文件扩展名

1源代码

  .py为扩展名   用python解释 

一般在第一行要指定解释文件路径 #!/usr/bin/python  执行使用./1.py


2 字节代码(编译后生成的文件

.pyc为扩展名 

先引入模块,在文件的开头加上

import py_compile

py_compile.compile(‘1.py’)生成编译文件


3 优化代码

.pyo为扩展名

你可能感兴趣的:(python)