Python - Modules and Code Organization
You have a module
What will be printed and why?
config.py with a variable setting = 5. In your main program, you do:import config
config.setting = 10
import config
print(config.setting)What will be printed and why?
