Report Bug
Qus : Which of the following expressions results in an error?
Qusनिम्नलिखित में से कौन सा एक्सप्रेशन में एक एरर है?

A. float(‘10’)
B. int(‘10’)
C. float(’10.8’)
D. int(’10.8’)


Solution
D. int(’10.8’)



Explanation
All of the above examples show explicit conversion. However the expression int(’10.8’) results in an error.



Report Bug