不管是c,java,shell还是python,大家写的第一个程序竟然都是‘hello world’。‘hello world’确实是具有代表性的,挺有意思的一件事,那大家跟我也一块来玩玩哦!

[root@server19 python]# vim helloworld.py

#!/usr/bin/python

#Filename:helloworld.py

#####python is a explainer

#####you also could change this file's permission to run it directlly.The permis#####sion is "a+x".Use filename to run.

print 'Hello World!'

[root@server19 python]# chmod +x helloworld.py

[root@server19 python]# ./helloworld.py

Hello World!

在任何地方均可以用命令helloworld.py来运行此程序:

[root@server19 python]# echo $PATH  //查看系统环境变量^C

[root@server19 python]# cp -p helloworld.py /usr/local/sbin/^C

[root@server19 ~]# helloworld.py

Hello World!