Q. What will the following Python code output: print(type(3.14))?
β
Correct Answer: (B)
<class 'float'>
Explanation: 3.14 is a float, so the output will be '<class 'float'>'.