From cb7999c56b54c6c1eedc3c5b0fbf1d73208397ab Mon Sep 17 00:00:00 2001 From: Lukas Baumann Date: Thu, 18 Feb 2021 08:58:01 +0100 Subject: [PATCH] Create 1 - Alphabet Aerobatics.py --- 12/1 - Alphabet Aerobatics.py | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 12/1 - Alphabet Aerobatics.py diff --git a/12/1 - Alphabet Aerobatics.py b/12/1 - Alphabet Aerobatics.py new file mode 100644 index 0000000..b980eab --- /dev/null +++ b/12/1 - Alphabet Aerobatics.py @@ -0,0 +1,2 @@ +for c in range(0, 26): + print(chr(ord('A')+c), end="")