Which Of The Following Lines Of Code Will Not Show A Match #955
Which of the following lines of code will not show a match?
This multiple choice question (MCQ) is related to the book/course gs gs109 Python. It can also be found in gs gs109 Regular Expressions - Python Regular Expressions - Quiz No.1.
Which of the following lines of code will not show a match?
>>> re.match(‘ab*’, ‘a’)
>>> re.match(‘ab*’, ‘ab’)
>>> re.match(‘ab*’, ‘abb’)
>>> re.match(‘ab*’, ‘ba’)