In Python, what does ” mean?
You are looking at the default representation of a function object. It provides you with a name and a unique id, which in CPython happens to be a memory address. You cannot access it using the address; the memory address is only used to help you distinguish between function objects. In other words, if you … Read more