Question: 1. Which strings will be matched by the regular expression a[abc]c? abb acc adbc ac 2. Consider the following Python statement: matches = re.search(r'[a-z]oo[a-z]*', The
1. Which strings will be matched by the regular expression "a[abc]c"? abb acc adbc ac
2.
Consider the following Python statement: matches = re.search(r'[a-z]oo[a-z]*', "The food is good")
The variable "matches" is:
| a list | ||
| a match object | ||
| a tuple | ||
| a string |
3.
What is the output of the code shown below?
re.findall('good', 'good is good')
re.findall('good', 'bad is good')
| A. | ['good', 'good'] ['good'] | |
| B. | ('good', 'good') ('good') | |
| C. | ('good') ('good') | |
| D. | ['good'] ['good']
|
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
