Computer Science, asked by kaushikjammula03, 3 months ago

What will be returned by python as result of following statement? 1

print (Type (3/2))​

Answers

Answered by BrainlyProgrammer
2

QUESTION:-

  • what will be returned by python as result of the following statement?

print(type(3/2))

Answer:-

  • <class 'float'>

Explanation:-

  • type() returns the data type of the result of 3/2 that is 1.5
Similar questions