Program - function to print ascii value of a character.
Topic: Program - function to print ascii value of a character.
Solution
def show_ascii(a: str): print(ord(a))
List all Python Programs