for i in range(97, 123): print(chr(i), end = ' ') # a b c d e f g h i j k l m n o p q r s t u v w x y z for i in range(ord('a'), ord('z') + 1): print(chr(i), end = ' ') # a b c d e f g h i j k l m n o p q r s t u v w x y z import string print(string.ascii_lowercase) # abcdefghijklmnopqrstuvwxyz print(' '.join(string.ascii_lowercase)) # a b c d e f g h i j k l m n o p q r s t u v w x y z