Python Program to Print A to Z using for Loop
Topic: Python Program to Print A to Z using for Loop We will use the built-in Python function chr() to print the A to Z alphabet characters. We know that the Ascii code of ‘A’ is 65 and that of ‘Z’ is 90. Therefore we will use a range() function in a for loop with… Read More »