如何键入“py myfile.py”来运行它?或者更好,这样做./myfile.py?
有小费吗?
#!/usr/bin/env python
这将允许您运行脚本:
./myfile.py
但是你必须确保你的python脚本可执行:
chmod +x myfile.py