0
Is there anything know as id in Python
I attended a challenge the I was questioned
2 Answers
+ 2
Built-in id function returns a unique identifier for an object:
if id(left) == id(right):
print('Same object on both sides.')
P.S. Don't put code in the question tags.
0
thank you bro !!