>>> फ्लोट('12.6') का आउटपुट क्या है
What is the output of >>> float('12.6')
A
12.6
B
'12.6'
C
12
D
syntax error
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.
Correct Answer: A) 12.6