Python Tip #95 (of 365):
Don't use re.match(): it's confusing.
I'm not sure I've ever seen re.match() used when it wasn't being used by mistake.
If you think you want re.match(), you probably want either re.āsearch() or re.fullmatch() instead.
When matching a regex against a string, we're usually either trying to:
1. Find a regular expression within a string
2. Match a regular expression against a whole string
re.match() does neither of those!
š§µ (1/3)
