[[email protected] ~]# cat 1.py # 要进行优化的源码文件 #!/usr/bin/python print ‘Hello World‘
[[email protected] ~]# python -O -m py_compile 1.py # -O 表示优化,-m 表示模块 [[email protected] ~]# ll total 8 -rw-r--r--. 1 root root 39 May 25 10:50 1.py -rw-r--r--. 1 root root 112 May 25 10:58 1.pyo # 生成扩展名为 .pyo 的文件
时间: 2024-10-16 17:51:35