python-CSD-kursu/python-temel/ord.for.py

2 lines
67 B
Python

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