Language: Python
1.Predict the output:
>>> type('9')
>>> type('10.0')
Answers
Answered by
1
Answer:
type('9')
Output - <class 'str'>
type('10.0')
Output - <class 'str'>
Similar questions