. What will be the output produced by following code?
print(type(1+3))
print(type(1+3.0))
Answers
Answered by
4
Answer:
<class 'int'>
<class 'float'>
Similar questions