一、 Hello world程序
print("Hello World!")
执行命令: python hello.py ,输出
执行 python hello.py 时,明确的指出 hello.py 脚本由 python 解释器来执行。
如果想要类似于执行shell脚本一样执行python脚本,例: ./hello.py
,那么就需要在 hello.py 文件的头部指定解释器,如下:
#!/usr/bin/env python print "hello,world"
如此一来,执行: ./hello.py
即可。
ps:执行前需给予 hello.py 执行权限,chmod 755 hello.py
附:其它语言的hello world:
1 #include<iostream> 2 int main(void) 3 { 4 std::cout<<"Hello world"<<endl; 5 }