Python
What is *? In Regular Expression?
https://stackoverflow.com/questions/3075130/what-is-the-difference-between-and-regular-expressions
Parameterization and string substitution
String substitution In the context of building a database query like so: CREATE TABLE fish (nam...
All About Importing Modules and from Packages
Module? A module is just a Python file with the correspondingĀ .py extension. So if you're talkin...
Global variables with imports
Sharing global variables between modules If for whatever reason you need to share global variabl...
Unpacking operator in code and function header
Unpacking In Python you are allowed to do deconstruction similar to how you can do deconstructio...