Python/basics.py
2020-01-29 14:02:09 +00:00

4 lines
92 B
Python

temps = [221, 234, 340, 230, 9999]
print([temp / 10 for temp in temps if temp < 9999])