Python高階(三) - 個人Pythonic日記

1. 循環遍歷可迭代對象(in enumerate) Non-Pythonicpython # 基於索引的while循環 choices = ['red', 'green', 'blue'] i = 0 while i < len(choices): print('{}) {}'.format(i, choices[i])) i += 1 # 或者for循環: choic
相關文章
相關標籤/搜索