Example & Tutorial understanding programming in easy ways.

What is the use of the ord() function in Python ?

ord() function in Python return the ASCII value of any character 

Example:

print(ord('A')) // 65

Read More →