下列哪个循环结构能正确遍历列表steps并输出每个元素?
for i in range(steps):
for step in steps:
while step in steps:
for i in steps.range():