命令行运行Python脚本
Linux下先创建一个hello.py
[python] view plaincopy
- $ gedit hello.py
输入:
[python] view plaincopy
- #!/usr/bin/env python
- print 2+2
保存退出,运行:
[python] view plaincopy
- $ python hello.py
- 4
我们也可以让它变得和普通程序一样执行
执行之前,让脚本文件具备可执行属性:
[python] view plaincopy
- $ chmod a+x hello.py
运行脚本:
[python] view plaincopy
- $ ./hello.py
- 4
也可以把.py去掉,让它更像一个普通程序:
[python] view plaincopy
- $ cp hello.py hello
运行脚本:
[python] view plaincopy
- $ ./hello
- 4
时间: 2024-10-19 10:29:51