【Python问题】contains an element of the set of generators.

简介: 【Python问题】contains an element of the set of generators.

问题描述

求积分时如下

print(float(integrate(sympy.log(x, math.e), (x, a, b))))

报错:
contains an element of the set of generators.'

解决办法

在函数表达式前添加nsimplify,如下

print(float(integrate(nsimplify(sympy.log(x, math.e)), (x, a, b))))

参考:github上的解答

目录
相关文章
|
2月前
|
存储 Python
Python多个set中的交集
Python多个set中的交集
|
2月前
|
并行计算 Python
Python错误笔记(一):CUDA initialization: CUDA unknown error - this may be due to an incorrectly set up env
这篇文章讨论了CUDA初始化时出现的未知错误及其解决方案,包括重启系统和安装nvidia-modprobe。
146 0
|
3月前
|
存储 数据处理 Python
Python中的Set集合:高效数据处理的利器
Python中的Set集合:高效数据处理的利器
48 0
|
4月前
|
索引 Python 容器
为什么Python中会有集合set类型?
为什么Python中会有集合set类型?
|
4月前
|
Python
python中set和frozenset方法和区别
python中set和frozenset方法和区别
|
4月前
|
JavaScript 前端开发 Python
成功解决:Can‘t find Python executable “python“, you can set the PYTHON env variable.
这篇文章分享了作者在运行前端Vue项目时遇到的关于Python执行环境的问题和解决方法。问题是由于找不到Python可执行文件导致的编译错误,解决方法包括安装编译环境、卸载并重新安装出现问题的`node-sass`包,并重新执行`npm install`和`npm run dev`。
成功解决:Can‘t find Python executable “python“, you can set the PYTHON env variable.
|
4月前
|
Python
python集合类型 (Set Types)
【8月更文挑战第3天】
78 9
|
4月前
|
测试技术 索引 Python
Python接口自动化测试框架(基础篇)-- 常用数据类型list&set()
本文介绍了Python中list和set两种数据类型的使用,包括它们的创建、取值、增删改查操作、排序以及内置函数的使用,还探讨了list的比较函数和set的快速去重功能。
34 0
|
4月前
|
SQL 机器学习/深度学习 算法
【python】python指南(八):静态类型注解之Set
【python】python指南(八):静态类型注解之Set
32 0
|
5月前
|
数据处理 Python
【Python】已解决:SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFram
【Python】已解决:SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFram
609 1