16
unknown
plain_text
2 years ago
128 B
5
Indexable
n = [1, 2, 3, 4, 5] for i in n: print(i, i * 1.057, i - 12.22) print(*((i, i * 1.057, i - 12.22) for i in n), sep='\n')
Editor is loading...
n = [1, 2, 3, 4, 5] for i in n: print(i, i * 1.057, i - 12.22) print(*((i, i * 1.057, i - 12.22) for i in n), sep='\n')