Register Now

Login

Lost Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

What will be the output of the following Python code snippet?
print(‘1.1’.isnumeric())

What will be the output of the following Python code snippet?
print(‘1.1’.isnumeric())
a) true
b) false
c) none
d) error

Answer: b
Explanation: The character . is not a numeric character.

Join The Discussion