- 1
Python Module 2 Quiz Question 6
Fill in the blanks to iterate over the list using a for loop and print its values. list = [1, 2, 3] __ var __ list: print(__)
2 Respuestas
+ 4
list = [1,2,3]
for var in list:
print(var)
0
idk
Fill in the blanks to iterate over the list using a for loop and print its values. list = [1, 2, 3] __ var __ list: print(__)