Now, you can just use .toLocaleString() to format a number in any way you like. Back then you would need a custom function to do that for you, now you can do it directly. Just call this function and it will return the string for you, and you can print it or save it for later use.
Other Posts
Manim: An Python Animation Engine
If you use Python, you might know a library called Manim. It is first a personal …
Git Logging Github Accounts With 2FA
if you have 2FA for your Github account activated, it will be annoying to access …
How to dupilicate a python list
If you want a copy of a list, you might do this:
list1 = list2
if you alter …