

InterviewSolution
Saved Bookmarks
1. |
Which module in Python supports regular expressions?(a) re(b) regex(c) pyregex(d) none of the mentioned |
Answer» Correct choice is (a) re The explanation is: re is a part of the standard library and can be imported using: import re. |
|