w3resource

Python: Print letters from the English alphabet from a-z and A-Z

Python Basic - 1: Exercise-114 with Solution

Write a Python program to print letters from the English alphabet from a-z and A-Z.

Sample Solution:

Python Code:

import string
print("Alphabet from a-z:")
for letter in string.ascii_lowercase:
   print(letter, end =" ")
print("\nAlphabet from A-Z:")
for letter in string.ascii_uppercase:
   print(letter, end =" ")

Sample Output:

Alphabet from a-z:
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 
Alphabet from A-Z:
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 

Pictorial Presentation:

Python: Print letters from the English alphabet from a-z and A-Z.

Flowchart:

Flowchart: Python - Print letters from the English alphabet from a-z and A-Z.

Python Code Editor:

Have another way to solve this solution? Contribute your code (and comments) through Disqus.

Previous: Write a Python program to reverse all the words which have even length.
Next: Write a Python program to generate and prints a list of numbers from 1 to 10.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Follow us on Facebook and Twitter for latest update.