Python · Regular Expressions
What does this print? ``` import re print(bool(re.search(r"a.c", "a\nc"))) print(bool(re.search(r"a.c", "a\nc", re.DOTALL))) ```
Answer locked. Get the free KnowCard app to reveal it — plus spaced-repetition review so it actually sticks.
