>>> def func(): pass
>>> func
<function func at 0x10ce60400>
What is that address for? (The 0x10ce60400
)
Where and what does it point to?
(I am talking about CPython 3.7)
>>> def func(): pass
>>> func
<function func at 0x10ce60400>
What is that address for? (The 0x10ce60400
)
Where and what does it point to?
(I am talking about CPython 3.7)