assign exec function to variable python

33

old_string = "didn't work"
new_string = "worked"

def function():
    exec("global old_string; old_string = new_string")
    print(old_string)

function()

Comments

Submit
0 Comments