I created a file 'user.py' and I gave it a variable 'coin' = '100'
coin = 100
I created another file and import this code
import user
print(user.coin) # Output 100
user.coin = 50
This variable is not updated in the 'user.py' file. I can to change the value from 99 to 50.
I want the change in 'user.py' file
coin = 50