in Python by (31.6k points)
What Is The Purpose Of Id() Function In Python?

1 Answer

0 votes
by (32.2k points)

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.

Related questions

0 votes
asked Oct 11, 2021 in Python by rajeshsharma (23.9k points)
...