#第一种方法:用for loop遍历变量中的元素
# Create a list of strings: flash
flash = ['jay garrick', 'barry allen', 'wally west', 'bart allen']
# Print each list item in flash using a for loop
for person in flash:
print(person)
#第二种方法:用iter()创造一个的迭代器,再结合next()函数对变量中元素进行遍历
# Create an iterator for flash: superhero
superhero=iter(flash)
# Print each item from the iterator
print(next(superhero))
print(next(superhero))
print(next(superhero))
print(next(superhero))
#输出结果都是一样的:
jay garrick
barry allen
wally west
bart allen
#以上两种方法,第二种相对简单。