Computer Science, asked by rajni797379, 6 months ago

program to print the alphabet A to Z in python .

Answers

Answered by Suryansh1018
0

Answer:

Program

import string

for i in string.ascii_uppercase:

print(i, end=" ")

Explanation:

hope it will help you

Similar questions