Is it possible to forward-declare a function in Python?
If you don’t want to define a function before it’s used, and defining it afterwards is impossible, what about defining it in some other module? Technically you still define it first, but it’s clean. You could create a recursion like the following: Python’s functions are anonymous just like values are anonymous, yet they can be … Read more