Computer Science, asked by sammguite, 4 months ago

. What will be the output produced by following code?

print(type(1+3))

print(type(1+3.0))​

Answers

Answered by pjgaikar06
4

Answer:

<class 'int'>

<class 'float'>

Similar questions