x = ord("A") # get numeric equivalent of A while x <= ord("Z"): print(chr(x), end = " ") # convert number to character x += 1 # "bump" the number to the next character print()