5 lines
68 B
Python
5 lines
68 B
Python
x = [1, 2, 3]
|
|
|
|
for item in x:
|
|
print(item)
|
|
# print(type(mydict))
|