+ 1
Can You help me complete the following code ?
iteration list with for list=[1,2,3] for var list. print ( )
3 Antworten
+ 5
Here's the code:
list = [1,2,3]
for var in list:
print(var)
I suppose the code you showed is in Python, so my code is also in Python.
+ 1
In what language???
0
thank You for jour useful answer