Report Bug
Qus :

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

print('1.1'.isnumeric())


Qus

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

print('1.1'.isnumeric())


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


Solution
B. False



Explanation
The character . is not a numeric character.



Report Bug