to determine the type of an object we used which function
Answers
Answered by
1
Answer:
type() is the function used
Answered by
3
Answer:
There are two built-in functions that help you identify the type of an object. You can use type() if you need the exact type of an object, and isinstance() to check an object's type against something.
Similar questions