Does the order of functions in a Python script matter?
The only thing that Python cares about is that the name is defined when it is actually looked up. That’s all. In your case, this is just fine, order doesn’t really matter since you are just defining two functions. That is, you are just introducing two new names, no look-ups. Now, if you called one … Read more