i do the following:
a=12345
I am trying to undertstand the meaning of this.Please answer below questions.
a points to the memory address of 12345 (True/False)
If i do b=12345. Then b also points to the memoery address of 12345 (True/False)
I have read that the ref count of 12345 should increase by 1 after b points to it. (True/False)
How can i retrieve the memory address of 12345. I want to check that a and b both point to address of 12345.Please clarify
I tried using id function(it only show same memory location for <=255 range)