Python/basics.py

4 lines
71 B
Python
Raw Normal View History

2020-01-29 14:01:26 +00:00
temps = [221, 234, 340, 230]
2020-01-29 13:54:51 +00:00
2020-01-29 14:01:26 +00:00
print([temp / 10 for temp in temps])
2020-01-29 13:54:51 +00:00