Python200

Python – Print Alphabets Uppercase & Lowercase

This post explains how to print English Alphabets in both Uppercase & Lowercase using core Python.

Below is the ASCII values to print Alphabets,

Alphabets in Uppercase ASCII range: 65 to 90
Alphabets in Lowercase ASCII range: 97 to 122

Here is the entire Python script to print Alphabets in Uppercase & Lowercase:

Output of the above program will be:

 

Related Posts

Leave a Reply