Create 1 - Alphabet Aerobatics.py

This commit is contained in:
Lukas Baumann 2021-02-18 08:58:01 +01:00 committed by GitHub
parent 5636537eda
commit cb7999c56b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,2 @@
for c in range(0, 26):
print(chr(ord('A')+c), end="")