kuroko/test/testTupleIter.krk
2021-01-31 09:57:15 +09:00

5 lines
64 B
Python

print([x * 5 for x in (1,2,3)])
for x in (1,2,3):
print(x)