>>> फ्लोट('12.6') का आउटपुट क्या है
What is the output of >>> float('12.6')
A)
B)
C)
D)
Explanation:
The float()
function is used to convert a string or number into a floating-point number.
For the expression float('12.6')
, the string '12.6'
will be converted into the float 12.6
.
Correct answer: (A) 12.6.