5 lines
85 B
Plaintext
5 lines
85 B
Plaintext
# Simple list comprehensions
|
|
for i in [x * 5 for x in [1,7,3,5,9,2,8]]:
|
|
print i
|
|
|