csc-python-solutions/12/1 - Alphabet Aerobatics.py
2021-02-18 08:58:01 +01:00

3 lines
57 B
Python

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