McqMate
Sign In
Hamberger menu
McqMate
Sign in
Sign up
Home
Forum
Search
Ask a Question
Sign In
McqMate Copyright © 2025
→
Computer Science Engineering (CSE)
→
Python Programming
→
Which module in Python supports regular ...
Q.
Which module in Python supports regular expressions?
A.
re
B.
regex
C.
pyregex
D.
None of the above
Answer» A. re
541
2
Do you find this helpful?
2
View all MCQs in
Python Programming
Discussion
BU
Borhan Uddin
2 years ago
Wonderful!
0
BU
Borhan Uddin
2 years ago
What is re?
0
Login to comment
Related MCQs
Program code making use of a given module is called a ______ of the module.
Predict the output of following python programs dictionary1 = {'Google' : 1, 'Facebook' : 2, 'Microsoft' : 3 } dictionary2 = {'GFG' : 1, 'Microsoft' : 2, 'Youtube' : 3 } dictionary1.update(dictionary2); for key, values in dictionary1.items(): print(key, values)
Which function overloads the >> operator?
Which of these is not a core data type?
Which of the following formatting options can be used in order to add „n‟ blank spaces after a given string „S‟?
Suppose t = (1, 2, 4, 3), which of the following is incorrect?