diff --git a/basics.py b/basics.py index 6652535..15aaafe 100644 --- a/basics.py +++ b/basics.py @@ -1,4 +1,4 @@ -temps = [221, 234, 340, 230] +temps = [221, 234, 340, 230, 9999] -print([temp / 10 for temp in temps]) +print([temp / 10 for temp in temps if temp < 9999]) \ No newline at end of file