H
Hallvard B Furuseth
Is there any reason not to structure my program like this?
def ...
def ...
var = ...
var = ...
import ...
import ...
main_function()
E.g. does it compile to slower code, or does it confuse PyChecker or
something, if I put the imports after the functions that use them?
def ...
def ...
var = ...
var = ...
import ...
import ...
main_function()
E.g. does it compile to slower code, or does it confuse PyChecker or
something, if I put the imports after the functions that use them?