Write a Python Program to Display The ASCII Code of (A-Z) And (a-z) Characters

preview_player
Показать описание
Hello Programmers, Welcome to my channel.

In this video you will learn about how to Write a Python Program to Display The ASCII Code of (A-Z) And (a-z) Characters

Python Scripts
======================

Python Functions Solved
==========================

Python Programs Solved
============================

Code
=============================
from string import ascii_uppercase, ascii_lowercase

print("The ASCII Code of (A-Z) is ...")
for letter in ascii_uppercase:
print(f"ASCII Code of {letter} is : {ord(letter)}")

print("The ASCII Code of (a-z) is ...")
for letter in ascii_lowercase:
print(f"ASCII Code of {letter} is : {ord(letter)}")

Keywords
=============================
#python #python3 #python_assignment #pythonprogramming #pythontutorial #pythonprojects #pythoncourse #pythonbaba #pythonforbeginners #pythonautomation #pythonbasic #pythonbeginners
Рекомендации по теме