How to find ASCII number of a character using python

 a="A"

b=ord(a)

print(b)

#Ans= 65

Comments

Popular posts from this blog