Python - Modules and Code Organization
You have a module
What will be printed and why?
settings.py with a variable mode = 'default'. In your main script, you write:import settings settings.mode = 'custom' import settings print(settings.mode)
What will be printed and why?
