How would you set up the for() loop below to print "yellow orange green blue red" to the screen?
marbles = ["red","blue","green","orange","yellow"]
for ???:
print(marbles[i],end=" ")
a.
for i in range(0, len(marbles),-1):
b.
This output is not possible given the starting list
c.
for i in range(len(marbles)-1,-1,-1):
d.
for i in range(len(marbles)-1,0):
1 answer
c. for i in range(len(marbles)-1,-1,-1):