Python regex `group` functions

Python Regex group() function explained with examples: named groups and groupdict.

We'll cover the following...

A regular expression can have named groups. This makes it easier to retrieve those groups after calling match(). But it ...