My first Python

个人第一个Python程序:python

print 'hello world'
raw_input ("print any key to continue...")

在python3.4下应写为

print ("hello world! This is my first python!")
input("Press enter key to close this window...")
此时的print函数已经成为python内置函数。