Answered step by step
Verified Expert Solution
Question
1 Approved Answer
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
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started