1. 程式人生 > >Python基礎一:編譯器的選擇與Python保留關鍵字

Python基礎一:編譯器的選擇與Python保留關鍵字

eclipse外掛的安裝

Python保留關鍵字

['False', 'None', 'True', 'and', 'as', 'assert', 'break', 'class', 'continue', 'def', 'del', 'elif', 'else', 'except',
 'finally', 'for', 'from', 'global', 'if', 'import', 'in', 'is', 'lambda', 'nonlocal', 'not', 'or', 'pass', 'raise', 'return',
  'try', 'while', 'with', 'yield']

Python的註釋

#單行註釋 ‘’’ 多行註釋 ’‘’ 雙引號也可以。Python好像沒有單雙之分

Python的特點

Python不使用{} 使用縮排符,只要空格保持一致就不會報錯; Python也沒用分號;表示換行

如果語句過長使用\在末尾使用這個表示這句話未完成為:

total = item_one + \
        item_two + \
        item_three

也可以使用[]{}()多行語句不需要使用\