Global Variable becomes local
If the title is a bit cryptic (I have no idea how to put my issue in one title) here the explanation. I have a global variable ex = False orig = id(ex) Then, I have two functions: def start(test): print("Start") global ex while True: if id(ex) == orig: print("same") else: print(orig) print(id(ex)) def end(test):… Read More Global Variable becomes local