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(‘{:,}’.format(‘1112223334’))

What will be the output of the following Python code snippet?
print(‘{:,}’.format(‘1112223334’))
a) 1,112,223,334
b) 111,222,333,4
c) 1112223334
d) Error

Answer: d
Explanation: An integer is expected.

Join The Discussion