Python · Regular Expressions
What does this print? ``` import re m = re.match( r"(?P<a>P[Yy])(?P<b>th.n)", "Python") print(m.group("b"), m.groupdict()) ```
Answer locked. Get the free KnowCard app to reveal it — plus spaced-repetition review so it actually sticks.
