adplus-dvertising
frame-decoration

Question

What is the output of the code shown below?
s = 'welcome home'
m = re.match(r'(.*)(.*?)', s)
print(m.group())

a.

(‘welcome’, ‘home’)

b.

[‘welcome’, ‘home’]

c.

welcome home

d.

[‘welcome’ // ‘home’ ]

Posted under Python

Answer: (c).welcome home

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 code shown below?

Similar Questions

Discover Related MCQs

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

Q. To read the next line of the file from a file object infile, we use

Q. To read the remaining lines of the file from a file object infile, we use

Q. The readlines() method returns

Q. Which are the two built-in functions to read a line of text from standard input, which by default comes from the keyboard?

Q. Which one of the following is not attributes of file

Q. What is the use of tell() method in python?

Q. What is the current syntax of rename() a file?

Q. What is the current syntax of remove() a file?

Q. What is the use of seek() method in files?

Q. What is the use of truncate() method in file?