Awesome tricks every Python coder should know
Welcome back! Python is an awesome programming language with a ton of capability, if you’re new to this language, check out the link below to learn more:
So, let’s talk about some awesome Python tricks that you should definetely know about!
The Zen Of Python
First up we have a very random Python trick, this specific one allows us to import a package to look at the Zen Of Python, essentially a rule book for Python users. To do this, you want to import this:
import this
After that, you should see your console print out the following:
Getting The Size Of Memory Used
Next up, one of my favorite little tricks with Python is checking the size of variables/datasets that are inside of our environment. We can use the getsizeof function to actually see the amount…