Which statement do you analyse that, it is the correct way to find the suitable data type?
>>> type 10.50
>>> data type(10.50)
>>> type (10.50)
>>> Type(10.50)
Answers
Answered by
1
Answer:
The options c will right
It means >>> type (10.50)
Because python is a case sensitive. So
Every capital or small letter means different for computer.
So option c is Ans.
Similar questions