predict the output of print(type(20/3))
Answers
Answered by
2
Output:
<class 'float'>
Explanation:
As 20/3 can't be a integer value.
Answered by
1
Question:-
Write the output of the following code.
Output:-
Given code,
print(type(20/3))
Output for the following code..
<class 'float'>
Similar questions