Report Bug
Qus :

What will be the output of the following Python code?

print('Hello!2@#World'.istitle())

Qus

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

print('Hello!2@#World'.istitle())


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


Solution
A. True



Explanation
It is in the form of a title.



Report Bug