5 lines
58 B
Text
5 lines
58 B
Text
|
|
myList = [2, 4, 6, 8]
|
||
|
|
for i in myList
|
||
|
|
print i
|
||
|
|
end for
|