Computer Science, asked by khushhal18, 5 months ago

predict the output of print(type(20/3)) ​

Answers

Answered by Oreki
2

Output:

<class 'float'>

Explanation:

As 20/3 can't be a integer value.

Answered by anindyaadhikari13
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