Python是一種物件導向的語言,但它不像C++一樣把標準類別都封裝到函式庫中,而是進行了進一步的封裝,語言本身就整合一些類別和函數,例如print,list,dict etc.為程式設計帶來很大的便利
Python 使用#進行單行註釋,使用 ''' 或 """ 進行多行註釋
數值計算
>>> print "One hour has", 60 * 60 , "seconds" One hour has 3600 seconds >>> result = 12 # 同一行代码利用空格分段使格式更清晰 >>> print result 12
字串
Python 中使用 "" 或 '' 表示字串,習慣上單字使用 '' 一句話使用 ""
>>> print 'Here is Python' Here is Python >>> print "Here is Python,too" Here is Python,too
如果在文本中使用了非ASCII編碼的字符,可以在python腳本的開有上加入 # -*- coding: utf-8 -*-