在For 循環中解包元組
問題:
問題:for i, a in enumerate(attributes): # Code
此行會觸發錯誤“ValueError:需要超過1 個值才能解包。” i,拆包的目的是什麼?我們如何理解它的機制?
答案:x = (1, 2) a, b = x print(a, b) # Outputs: 1, 2
for tuple in enumerate(attributes): i, a = tuple # Unpacks the tuple # Code that uses i and a
以上是為什麼「for i, a in enumerate(attributes):」會在 Python 中拋出「ValueError: need more than 1 value to unpack」錯誤?的詳細內容。更多資訊請關注PHP中文網其他相關文章!