Computer Science, asked by vamsichandh2828, 1 month ago

How would you create a loop to iterate over the contents of the list 'mylist = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9) and print out each element ?
-> for item in range(mylist): print(item)
-> for item in mylist[0] print(item)
-> for item in mylist: print(item)
-> for item in range(len(mylist)): print(item)

Answers

Answered by jrlnaidu
0

Answer:

Answer Is Not A Answer bro

Similar questions