python

python的exec函数怎样进行测试

小樊
81
2024-12-06 15:59:11
栏目: 编程语言

要测试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脚本,并且其中的变量和函数按预期工作。

0
看了该问题的人还看了