InterviewSolution
Saved Bookmarks
| 1. |
What is the type () in Python? |
|
Answer» The built-in METHOD which decides the types of the variable at the program runtime is known as type() in Python. When a single ARGUMENT is PASSED through it, then it returns given OBJECT type. When 3 ARGUMENTS pass through this, then it returns a new object type. |
|