Python - Modules and Code Organization
Consider two files:
What is the output when running
# file1.py
print('Loading file1')
value = 10# file2.py
import file1
import file1
print(file1.value)What is the output when running
file2.py?