

InterviewSolution
Saved Bookmarks
1. |
Which of the following functions clears the regular expression cache?(a) re.sub()(b) re.pos()(c) re.purge()(d) re.subn()This question was posed to me during a job interview.I'm obligated to ask this question of Regular Expressions in section Regular Expressions and Files of Python |
Answer» Right ANSWER is (C) re.purge() |
|