5 lines
64 B
Python
5 lines
64 B
Python
print([x * 5 for x in (1,2,3)])
|
|
|
|
for x in (1,2,3):
|
|
print(x)
|