3e3ea9a
1
2
3
4
5
6
7
8
import os import subprocess # 清理终端 subprocess.call('clear' if os.name == 'posix' else 'cls', shell=True) # 运行主程序 os.system(os.environ['PYTHONPATH'] + ' main.py')