跳转至

python以脚本方式运行


2015-11-05 by dongnan

举个栗子

Python 程序可以像Shell脚本那样直接执行,例如:

脚本内容

#!/usr/bin/python
# -*- coding:utf8 -*-

print 'hello word' # python2

赋予可执行权限

chmod +x hello.py

执行脚本程序

./hello.py 
hello word

关键部分

#!/usr/bin/python ,Python 程序可以像Shell脚本那样直接执行,只要在脚本第一行写上python 路径。

# -*- coding:utf8 -*-,Python 程序可以通过编码使用ASCII以外的字符集。 通常的做法是在#!行后面用一个特殊的注释行来定义字符集。

回到页面顶部