From 6005d4bf05c84b2c0699b5593af1cc98520df15c Mon Sep 17 00:00:00 2001 From: David Avery Date: Tue, 28 Jan 2020 13:48:04 +0000 Subject: [PATCH] Lesson 46 --- basics.py | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 basics.py diff --git a/basics.py b/basics.py new file mode 100644 index 0000000..4b0e67f --- /dev/null +++ b/basics.py @@ -0,0 +1,4 @@ +monday_temperatures = [9.1, 8.8, 7.6] + +for temperature in monday_temperatures: + print(round(temperature)) \ No newline at end of file