Discussion :: Python MCQs
-
The output of the code shown below is:int('65.43')
Answer : Option B
Explanation :
The snippet of code shown above results in a value error. This is because there is an invalid literal for int() with base 10: '65.43'.
Be The First To Comment