I have file abcd.py
a=9
def funn():
print("A")
I import it two times
>>> import abcd as ss
>>> ss.a
9
>>> import abcd as qq
>>> qq.a
9
But When I change value of a from ss imported file, qq import file value of a is automatically change.
>>> ss.a=4
>>> ss.a
4
>>> qq.a
4