Report Bug
Qus : which function is used to get the ASCII value of any Character in PYthon?
Qusपायथन में किसी भी वर्ण का ASCII मान प्राप्त करने के लिए किस फ़ंक्शन का उपयोग किया जाता है?

A. ascii()
B. getAscii()
C. get_ascii()
D. ord()


Solution
D. ord()



Explanation
ord() function is used to get the ASCII value of any character in Python



Report Bug