I just opened the python ide and entered the below code. I just want to know how it is working in background because I opened IDE freshely?Here, I am aware of id() function, but how come the "1" is given some id inside python because neither it is not a variable nor I used in my IDE anywhere since I opened the IDE freshly
>>> id(1)
20643664
>>> id(2)
20643652
>>>