2015-02-24 53 views

回答

19

因爲你使用Python 3 print是在Python 3的功能,所以你需要括號包圍要打印的字符串。

print ("Sultan") 
+0

謝謝。這是工作 。 – 2015-02-24 17:27:46

+0

很高興我能幫到你。 – jramirez 2015-02-24 17:30:57

2

print語句是一個Python 2 print聲明。在Python 3中,您需要print('Sultan')