From 7f876867a99f316ac81005c14c1fd73d3bb798ff Mon Sep 17 00:00:00 2001 From: David Avery Date: Wed, 29 Jan 2020 14:02:09 +0000 Subject: [PATCH] Lesson 61 --- basics.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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