标签:style blog http color io os ar 使用 sp
#!/usr/bin/env python # FileName:traditional-HelloWorld-program.py print("Hello, World!")
输出一行:Hello, World!
上面程序的第一行是一个 Shabang,下面这个也是。
#!/usr/bin/python
组成:【# 井号(hash)】+【! 惊叹号(bang)】+【解释器的绝对路径(the path to the interpreter)】
作用:指定使用哪个解释器来运行该脚本(that interpreter will be used to interpret and execute the script)
如果不知道 Python 解释器确切的所在位置,可以使用如在的方式写 hashbang:
#!/usr/bin/env python
env 程序会负责寻找Python解释器。
标签:style blog http color io os ar 使用 sp
原文地址:http://www.cnblogs.com/QCCQ/p/hello-world-python.html