Python入門------for與for-else循環

代碼1: a = ["apple","orange","banana","grape"]    for x in a:  print(x)             代碼2: a = [["apple","orange","banana","grape"],(1,2,3)]   for x in a: for x1 in x: print(x1)                   代碼3: a =
相關文章
相關標籤/搜索