gpt4 book ai didi

python - 如何在Python中将用户定义的函数作为用户输入?

转载 作者:太空宇宙 更新时间:2023-11-03 20:05:09 27 4
gpt4 key购买 nike

我正在尝试编写一个程序来定义用户定义的函数,并将返回表达式作为用户的输入。假设一个函数应该返回 x+y。在 python 中我们可以这样做——

def f(x,y):
return x+y

但是,我想要类似的东西

a=input("enter the function:")
def f(x,y):
return a
print f(2,3)

如果我输入 x+y 作为 a 的输入,它将给出 5。如何在 Python 中完成(没有 Sympy 或 raw_function 以及 eval())?

最佳答案

这实际上很简单。假设你想在 x=2 处计算函数

f1=str(input("Enter the test function:"))
def f(x):
return eval(f1)
print f(2)

就是这样!

关于python - 如何在Python中将用户定义的函数作为用户输入?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59008778/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com