Computer Science, asked by abhibhat10199, 7 days ago

Language: Python

1.Predict the output:
>>> type('9')
>>> type('10.0')

Answers

Answered by SpandanMukherjee428
1

Answer:

type('9')

Output - <class 'str'>

type('10.0')

Output - <class 'str'>

Similar questions