From 79787f418e0b0a9d850ab1d47074f125f8629d54 Mon Sep 17 00:00:00 2001 From: Lukas Baumann Date: Thu, 18 Feb 2021 18:55:58 +0100 Subject: [PATCH] Create 1 - Countup.py --- 07/c/1 - Countup.py | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 07/c/1 - Countup.py diff --git a/07/c/1 - Countup.py b/07/c/1 - Countup.py new file mode 100644 index 0000000..de5b332 --- /dev/null +++ b/07/c/1 - Countup.py @@ -0,0 +1,5 @@ +x = 1 +while x <= 10: + print(x) + x += 1 +print("Blastoff!")