Report Bug
Qus :

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

print('11'.isnumeric())

Qus

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

print('11'.isnumeric())


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


Solution
A. True



Explanation
All the character are numeric.



Report Bug