Question: In the code snippets below, which regex pattern used by the re Python module will create a list of matches for starts with 'GigabitEthernet' and

In the code snippets below, which regex pattern used by the re Python module will create a list of matches for starts with 'GigabitEthernet' and has a digit 1-9 at the end, immediately followed by a space?
interface_pattern = r'(GigabitEthernet[1-9])'
interface_pattern = r'(GigabitEthernet[1|9])\s'
interface_pattern = r'(GigabitEthernet[1-9])\r'
interface_pattern = r'(GigabitEthernet[1-9])\s'
interface_pattern = r'(GigabitEthernet(1-9))\s'

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!