The Output Of The Following Two Python Codes Are The Same P Pre #987
The output of the following two Python codes are the same. </p> <pre><code class="language-python">p = re.compile('hello') r = p.match('hello everyone') print(r.group(0)) r = re.match('hello', 'hello everyone') print(r.group(0))</code></pre>
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.4.