
5篇文章 · 1075字 · 1人關注
內置函數 abs()絕對值 cmp(x, y) # x < y --> -1 ## x == y --> 0 ## x > y --> 1 數...
***Dict Python內置了dict類型,以key-value存儲,是一個hashable 可哈希的數據類型 Initialize: di...
if condition : statement elif: # else: statement Attention: ...
***List list是一個有序集合,內部元素的數據類型可以不一致 listexample = [var1, var2, var3 ...] ...
Python字符串基本操作 ord('A') # ascii code number of A cha(65) # ascii code of ...