要测试Python的exec()
函数,您可以编写一个简单的脚本,其中包含一些变量和函数,然后使用exec()
执行该脚本。接下来,您可以检查exec()
的返回值以及执行后的变量和函数是否按预期工作。
以下是一个简单的示例:
# test_exec.py
x = 10
y = 20
def add(a, b):
return a + b
result = add(x, y)
print("Result of add function:", result)
现在,我们将使用exec()
执行此脚本并测试其功能:
# main.py
code = '''
x = 10
y = 20
def add(a, b):
return a + b
result = add(x, y)
print("Result of add function:", result)
'''
# Execute the code using exec()
exec(code)
# Test the variables and function
assert x == 10, "x should be 10"
assert y == 20, "y should be 20"
assert add(x, y) == 30, "add(x, y) should return 30"
print("All tests passed!")
当您运行main.py
时,如果所有断言都通过,您将看到输出“All tests passed!”。这表明exec()
函数已成功执行test_exec.py
脚本,并且其中的变量和函数按预期工作。