re.findall practice

re.findall practice#

# Which of the following definitions of ```s``` will make ```re.findall("par..t", s)``` return a non-empty list? - [x] ```s = parrot``` - [ ] ```s = partial``` - [ ] ```s = part``` - [x] ```s = parent```