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

3 lines
67 B
Python
Raw Normal View History

2023-05-20 13:23:33 +00:00
for i in range(ord('A'), ord('Z') + 1):
print(chr(i), end=' ')