Skip to content
Yung-Chung Ku edited this page Aug 30, 2017 · 7 revisions
  • Python 3 & Python 2 不相容
    • Python 2.7 之後儘量相容
  • 縮排是語法的一部份
  • 跨平台開發要注意換行字元 (unix and windows)
  • 變數有區分大小寫, 弱資料型別
  • swap:
b,a = a,b
  • 一行最長79字元
  • 沒有 overflow: 17**3000, 17的3000次方
var1 = 'Hello World'
var2 = "Python Programming"
var1[0] # H
var2[1:5] # "ytho", 小於5個, 無<= 

Clone this wiki locally