Python · Regular Expressions
What does this print? ``` import re s = "ab\ncd" print(re.findall(r"^..", s)) print(re.findall(r"^..", s, re.MULTILINE)) ```
Answer locked. Get the free KnowCard app to reveal it — plus spaced-repetition review so it actually sticks.
