3 lines
57 B
Python
3 lines
57 B
Python
|
for c in range(0, 26):
|
||
|
print(chr(ord('A')+c), end="")
|