如果需要类似 shell 脚步一样执行 Python 脚本,如:./hello.py
需要在文件头部指定解释器,如下:
#! /usr/bin/env python
print("Hello world!")
PS: 执行前,需要给予 hello.py 执行权限,chmod 755 hello.py
如果需要类似 shell 脚步一样执行 Python 脚本,如:./hello.py
需要在文件头部指定解释器,如下:
#! /usr/bin/env python
print("Hello world!")
PS: 执行前,需要给予 hello.py 执行权限,chmod 755 hello.py