如何在 Python 中将字符串转换为代数或超越函数?

发布于 2024-11-03 03:09:38 字数 563 浏览 2 评论 0原文

这段代码是wxglade代码&它接受文本框的输入,这是一个代数或超越函数,

 def event_2(self, event): # wxGlade: application.<event_handler>
        #print "Event handler `event_2' not implemented!"
        #event.Skip()
    equationString = self.text_ctrl_1.GetValue()
    function = eval(equationString)
    event.Skip()

它给出错误

Traceback (most recent call last):
  File "ppy.py", line 103, in event_2
    function = eval(equationString)
  File "<string>", line 1, in <module>
NameError: name 'd' is not defined

This code is a wxglade code & it takes the input of a text box whis is a algebraic or transcendental function

 def event_2(self, event): # wxGlade: application.<event_handler>
        #print "Event handler `event_2' not implemented!"
        #event.Skip()
    equationString = self.text_ctrl_1.GetValue()
    function = eval(equationString)
    event.Skip()

it gives the error

Traceback (most recent call last):
  File "ppy.py", line 103, in event_2
    function = eval(equationString)
  File "<string>", line 1, in <module>
NameError: name 'd' is not defined

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

廻憶裏菂餘溫 2024-11-10 03:09:38

无论您在 text_ctrl_1 中放入什么 Python 代码,都会引用未定义的变量 d。 Python 不理解代数或符号数学;如果将 x = y + 3 之类的字符串传递给 eval 并且 xy 未定义 Python会抛出错误。

然而,有一些库可以在 Python 中进行符号数学运算。如果您想在 Python 中使用符号数学,请查看 SymPy

Whatever Python code you've put in text_ctrl_1 refers to a variable d that wasn't defined. Python does not understand algebra or symbolic math; if you pass a string like x = y + 3 to eval and either x or y are not defined Python will throw an error.

There are, however, libraries to do symbolic math in Python. If you want to use symbolic math in Python, look in to SymPy.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文