Computer Science, asked by kumaravelravi40, 5 months ago

what will be returned by python as a result of the following statements?
a.type(0)
b.type(int(0))
c.type(3/2)
d.type(1.2)​

Answers

Answered by SukhmanSinghBhogal
2

Answer:

a. integer

b. syntax error

c. float

d. float

Similar questions