adplus-dvertising
frame-decoration

Question

What is the output of the following?
sentence = 'we are humans'
matched = re.match(r'(.*) (.*?) (.*)', sentence)
print(matched.group(2))

a.

‘are’

b.

‘we’

c.

‘humans’

d.

‘we are humans’

Answer: (c).‘humans’

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. What is the output of the following?

Similar Questions

Discover Related MCQs

Q. The character Dot (that is, ‘.’) in the default mode, matches any character other than _____________

Q. The expression a{5} will match _____________ characters with the previous regular expression.

Q. ________ matches the start of the string.
________ matches the end of the string.

Q. Which of the following will result in an error?

Q. Choose the function whose output can be: <_sre.SRE_Match object; span=(4, 8), match='aaaa'>.

Q. Which of the following functions clears the regular expression cache?

Q. Which of the following functions results in case insensitive matching?

Q. The function of re.search is:

Q. Which of the following functions creates a Python object?

Q. Which of the following pattern matching modifiers permits whitespace and comments inside the regular expression:

Q. The function of re.match is:

Q. The special character \B matches the empty string, but only when it is:

Q. Which of the following special characters matches a pattern only at the end of the string?

Q. Which of the following functions returns a dictionary mapping group names to group numbers?

Q. Which of the following statements regarding the output of the function re.match is incorrect?

Q. To open a file c:\scores.txt for reading, we use

Q. To open a file c:\scores.txt for writing, we use

Q. To open a file c:\scores.txt for appending data, we use

Q. To read two characters from a file object infile, we use

Q. To read the entire remaining contents of the file as a string from a file object infile, we use