l = [2, 4, 3, 5] str = "bcdea" def badIterable(): i = 0 iterable = ["a", "b", "c"] for item in iterable: print(i, item) i += 1 def ...
確定! 回上一頁