Q. What will be the output of the following code snippet?
Code:
print(type(5 / 2)) print(type(5 // 2))
β
Correct Answer: (A)
float and int
print(type(5 / 2)) print(type(5 // 2))
You must be Logged in to update hint/solution