Report Bug
Qus :

What will be the output of the following Python code snippet?

print('Hello World'.istitle())

Qus

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

print('Hello World'.istitle())


A. True
B. False
C. None
D. Error


Solution
A. True



Explanation
It is in title form .



Report Bug