A to Z Print in Python

0

A to Z  Print in Python

  • In this topic we learn how to write a code A to Z print in Python.

Source Code:

#Follow - @Programmerfect

alpha = []
for i in range(65,91):
    alpha.append(chr(i))

print(alpha)


Post a Comment

0Comments
Post a Comment (0)