Python 安裝Python的設計哲學是「優雅」、「明確」、「簡單」。Python開發者的哲學是「用一種方法,最好是只有一種方法來做一件事」。在設計Python語言時,如果面臨多種選擇,Python開發者一般會拒絕花俏的語法,而選擇明確沒有或者很少有歧義的語法。這些準則被稱為「Python格言」。
先來簡單寫個程式 counter
如果要計算 alpha (List) 中的object 數量
把結果存在 beta (Dictionary)
Example1:
1 2 3 4 5 6 7 8 | alpha=['A','B','C','D','A','B','A','C','E'] beta={} for i in alpha: if i not in beta: beta[i]=1 else: beta[i]+=1 print (beta) |
Example2:
1 2 3 4 5 | alpha=["A","B","C","D","A","B","A","C","E"] beta={} for i in alpha: beta[i]=alpha.count(i) print (beta) |
Output:
1 | { 'A': 3, 'B': 2, 'C': 2, 'D': 1, 'E': 1} |
沒有留言:
張貼留言