csc-python-solutions/12/1 - Alphabet Aerobics.py

3 lines
57 B
Python
Raw Normal View History

2021-02-18 07:58:01 +00:00
for c in range(0, 26):
print(chr(ord('A')+c), end="")