在Mac和Linux上可以直接运行.py文件,方法是在文件第一行加注释

#!/usr/bin/env python3
print('hello world')

然后通过命令给文件权限
$ chmod a+x hello.py
就可以直接运行hello.py了。

Logo

更多推荐