Report Bug
Qus :

What will be the output of the following Python statement?

print(chr(ord('b')+1))

Qus

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

print(chr(ord('b')+1))


A. a
B. b
C. c
D. A


Solution
C. c



Explanation
Execute in the shell to verify.



Report Bug