Python Program to Find ASCII Value of Character

preview_player
Показать описание
#BackCoding

ASCII stands for American Standard Code for Information Interchange.

It is a numeric value given to different characters and symbols, for computers to store and manipulate. For example, the ASCII value of the letter 'A' is 65

#python
#programming
Рекомендации по теме
Комментарии
Автор

def printAsciiValue():

for i, value in enumerate(char):
print("Upper letter ASCII Value ", value, ord(value), value.lower(), ord(value.lower()))


printAsciiValue()

BackCoding