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

3 lines
57 B
Python

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