Question
a.
>>> re.search(‘aaaa’, “alohaaaa”, 0)
b.
>>> re.match(‘aaaa’, “alohaaaa”, 0)
c.
>>> re.match(‘aaa’, “alohaaa”, 0)
d.
>>> re.search(‘aaa’, “alohaaa”, 0)
Posted under Python
Engage with the Community - Add Your Comment
Confused About the Answer? Ask for Details Here.
Know the Explanation? Add it Here.
Q. Choose the function whose output can be: <_sre.SRE_Match object; span=(4, 8), match='aaaa'>.
Similar Questions
Discover Related MCQs
Q. Which of the following functions clears the regular expression cache?
View solution
Q. Which of the following functions results in case insensitive matching?
View solution
Q. The function of re.search is:
View solution
Q. Which of the following functions creates a Python object?
View solution
Q. Which of the following pattern matching modifiers permits whitespace and comments inside the regular expression:
View solution
Q. The function of re.match is:
View solution
Q. The special character \B matches the empty string, but only when it is:
View solution
Q. Which of the following special characters matches a pattern only at the end of the string?
View solution
Q. Which of the following functions returns a dictionary mapping group names to group numbers?
View solution
Q. Which of the following statements regarding the output of the function re.match is incorrect?
View solution
Q. To open a file c:\scores.txt for reading, we use
View solution
Q. To open a file c:\scores.txt for writing, we use
View solution
Q. To open a file c:\scores.txt for appending data, we use
View solution
Q. To read two characters from a file object infile, we use
View solution
Q. To read the entire remaining contents of the file as a string from a file object infile, we use
View solution
Q. To read the next line of the file from a file object infile, we use
View solution
Q. To read the remaining lines of the file from a file object infile, we use
View solution
Q. The readlines() method returns
View solution
Q. Which are the two built-in functions to read a line of text from standard input, which by default comes from the keyboard?
View solution
Q. Which one of the following is not attributes of file
View solution
Suggested Topics
Are you eager to expand your knowledge beyond Python? We've curated a selection of related categories that you might find intriguing.
Click on the categories below to discover a wealth of MCQs and enrich your understanding of Computer Science. Happy exploring!