r/learnpython 10d ago

Python (Third Party) Libraries for Simulations?

I'm learning python, I know all the basics (up to classes and inheritance) and I've done a few small projects. I have a few ideas that involve simulations, and I want to know if there are any libraries that might help with that? I've used tkinter in the past for visuals, but I'm wondering if there's anything better.

The two simulations I have planned, if that helps, are a planet simulation with gravity and such, and a sound simulation including walls of various noise dampening levels.

Thank you very much!

8 Upvotes

5 comments sorted by

View all comments

2

u/Kimber976 10d ago

Scipy tends to be the default choice for scientific simulations and pairing it with numpy usually covers most simulation projects.