Python/basics.py

4 lines
92 B
Python
Raw Normal View History

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