Report Bug
Qus :

What will be the output of the following Python statement?

print(chr(ord('A')+32))

Qus

निम्नलिखित Python स्टेटमेंट का आउटपुट क्या होगा?

print(chr(ord('A')+32))


A. A
B. B
C. a
D. Error


Solution
C. a



Explanation
Execute in shell to verify.



Report Bug