0 votes
in Python by
What Is The Purpose Of Id() Function In Python?

1 Answer

0 votes
by

The id() is one of the built-in functions in Python.

Signature: id(object)

It accepts one parameter and returns a unique identifier associated with the input object.

...