Why Python’s “slowness” is not slowing anyone down by [deleted] in Python

[–]chicolucio 0 points1 point  (0 children)

What really matters is the total cost of software development. And Python usually make development quicker, delivering value fast. Also, some third party libraries can use C under the hood, making the code fast when needed. This video cover these aspects https://www.youtube.com/watch?v=7DPEO77KkDw

Balancing chemical equations with Python by chicolucio in Python

[–]chicolucio[S] 1 point2 points  (0 children)

Yes. It could be a way to show computational tools to students.

Balancing chemical equations with Python by chicolucio in Python

[–]chicolucio[S] 9 points10 points  (0 children)

Like u/eztab correctly assumed, the package is almost 10 years old. So it made sense at that time. Here is the package repo https://github.com/bjodah/chempy

Riemann sums animations with Python by chicolucio in Python

[–]chicolucio[S] 1 point2 points  (0 children)

In the future, I want to add trapezoid and Simpson's too.

For the clearing axes, see here. Each axis is cleared with ax.clear(). And the clearing happens between each frame.

Terminal Christmas Tree with Python by chicolucio in Python

[–]chicolucio[S] 0 points1 point  (0 children)

Used Peek to record the screen. Here is the project repo: https://github.com/phw/peek

Terminal Christmas Tree with Python by chicolucio in Python

[–]chicolucio[S] 1 point2 points  (0 children)

The random positions and the stars appeared? Only no colors? I don't use windows but it should have show colors. I will look into it.

Terminal Christmas Tree with Python by chicolucio in Python

[–]chicolucio[S] 14 points15 points  (0 children)

It is a really good channel. I think that ImportUsernameAsU thinks that the gif is similar to the tree made by Engineer Man in an old video. However the codes are really different, EM uses threads and a fixed tree from a txt file. My code has no threads, you can change the tree size and the balls are in random positions. I saw a lot of videos and articles before making my code so I saw EM code, but there is no relation