Could you please list the python libraries for math and logical operation, beside from Matplotilib , pandas, and numpy? | Sololearn: Learn to code for FREE!
Новый курс! Каждый программист должен знать генеративный ИИ!
Попробуйте бесплатный урок
0

Could you please list the python libraries for math and logical operation, beside from Matplotilib , pandas, and numpy?

12th May 2023, 8:53 PM
Shubham Ambekar
Shubham Ambekar - avatar
3 ответов
+ 6
What have you looked for and where? https://code.sololearn.com/W0uW3Wks8UBk/?ref=app
12th May 2023, 8:57 PM
Ausgrindtube
Ausgrindtube - avatar
+ 6
Shubham Ambekar , there are thousands of modules available for python, but not all of them are distributed with a python installtion. use these links to serch for. > pypi: https://pypi.org/search/?q=&o=&c=Programming+Language+%3A%3A+Python > python documentation modules: https://docs.python.org/3/py-modindex.html
13th May 2023, 10:19 AM
Lothar
Lothar - avatar
+ 3
A couple of useful external packages: Scipy - Scientific calculation algorithms https://scipy.org Sympy - Symbolic mathematics https://www.sympy.org Pylog - Logical computations with Prolog https://pypi.org/project/pylog Scikit-learn - Predictive data analysis https://scikit-learn.org Tensorflow - Machine learning from Google https://www.tensorflow.org PyTorch - Machine learning from Facebook https://pytorch.org Python is an open ecosystem, anyone can publish a library that other developers can use. There are thousands of other libraries and frameworks, targeting specific areas and use cases. Search for them in the Python Package Index. https://pypi.org
14th May 2023, 5:35 AM
Tibor Santa
Tibor Santa - avatar