python-CSD-kursu/ord.for.py
2023-05-20 16:23:33 +03:00

3 lines
67 B
Python

for i in range(ord('A'), ord('Z') + 1):
print(chr(i), end=' ')