Regular Expression
Regular Expression
^a...s$
Any five letter string starting with
a and ending with s
re.findall()
The re.findall() method returns a list of strings
containing all matches.
IGNORECASE flag
◦ which stands for ignoring a case. specified this flag in
the regex method as an argument to perform case
insensitive matching.
re.M
re.MULTILINE