Getting the value of the first id is obvious. How to get the value of the second id in the function is ?
id(False)
=> 140399586313184
id(id(False))
=> 140399542553456
id(False) is id(False)
=> False
Python documentation:
operator.is_(a, b)
Return a is b. Tests object identity.
Operator.is_ (a, b) performs the function id(False) two times. The values in the id(False) memory are different. I want to know B when id is running id(False) is id(False)