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="")