gpt4 book ai didi

python - 不能在我的课上使用 sympy 解析器;类型错误 : 'module' object is not callable

转载 作者:太空宇宙 更新时间:2023-11-04 03:04:07 25 4
gpt4 key购买 nike

我写了一些代码来计算微分方程,它是使用 sympy 的解决方案,但是我得到了一个错误,我的代码:(示例)

from sympy.parsing import sympy_parser
expr=1/2
r='3/2'
r=sympy_parser(r)

我明白了

TypeError: 'module' object is not callable

我在这里做错了什么?

最佳答案

sympy_parser 是一个模块,并且模块不是可调用。你要的是sympy_parser.parse_expr :

>>> from sympy.parsing import sympy_parser
>>> r ='3/2'
>>> r = sympy_parser.parse_expr(r)
>>> r
3/2

关于python - 不能在我的课上使用 sympy 解析器;类型错误 : 'module' object is not callable,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40025837/

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