What will be the output of the following Python code snippet?
print(type(5 / 2))
print(type(5 // 2))
1
float and int
2
float and float
3
int and int
4
int and float
What will be the output of the following Python code snippet?
print(type(5 / 2))
print(type(5 // 2))