在Python中,可以使用列表(list)來存儲遍歷的值。下面是一個示例,展示如何遍歷一個字符串,并將每個字符存儲到一個列表中:
string = "Hello, World!"
characters = []
for char in string:
characters.append(char)
print(characters) # 輸出:['H', 'e', 'l', 'l', 'o', ',', ' ', 'W', 'o', 'r', 'l', 'd', '!']
在上述示例中,我們創建了一個空的列表characters
,然后使用for循環遍歷字符串string
中的每個字符。在每次循環中,我們將當前字符char
添加到列表characters
中。最后,我們打印出列表characters
的內容,即遍歷過程中存儲的所有字符。