個人第一個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內置函數。
個人第一個Python程序:python
print 'hello world' raw_input ("print any key to continue...")
print ("hello world! This is my first python!") input("Press enter key to close this window...")此時的print函數已經成爲python內置函數。