2.1.2.Python crash course
String
print and format的方式
concate
List, Tuple, Dictionary, Set
List
可讀可寫
Tuple
只有初始化時可賦值
Dictionary
key可以是string或是number
Set
只會儲存唯一值
Function
定義function
Map
根據提供的函數對指定序列做映射
lambda expressions
filter
以傳入的boolean function作為條件函式, iterate所有的sequence的元素並收集 function(元素) 為True的元素到一個List
Last updated