Here is a Bite to practice the continue
and break
statements in Python.
Complete filter_names
that takes a list
of names and returns a filtered list
(or generator) of names using the following conditions:
IGNORE_CHAR
are ignored,QUIT_CHAR
it inmediately exits the loop, so no more names are added/generated at this point (neither the QUIT_CHAR
name),MAX_NAMES
names max.Good luck and keep calm and code in Python!