在函数内使用exec设置变量

7 浏览
0 Comments

在函数内使用exec设置变量

我刚开始自学Python,对这个脚本需要一点帮助:

old_string = "didnt work"   
new_string = "worked"
def function():
    exec("old_string = new_string")     
    print(old_string) 
function()

我希望能使old_string = "worked"

0