Login
Remember
Register
Ask a Question
Can you please explain what is the purpose of id() function in Python Language?
0
votes
asked
Aug 29, 2020
in
Python
by
Robindeniel
Can you please explain what is the purpose of id() function in Python Language?
#python-id-function
#id-functon
Python-questions-answers
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Aug 29, 2020
by
sharadyadav1986
The id() is one of the built-in functions in Python Language.
Signature: id(object)
It accepts one parameter and returns a unique identifier associated with the input object.
...