Login
Remember
Register
Ask a Question
Which of the following expression is used to compile the pattern p?
0
votes
asked
Jan 11, 2021
in
Python
by
SakshiSharma
Which of the following expression is used to compile the pattern p?
i) re.assemble(p)
ii) re.create(p)
iii) re.regex(p)
iv) re.compile(p)
#python-pattern
pattern
python
Python-questions-answers
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Jan 11, 2021
by
SakshiSharma
correct answer is iv) re.compile(p)
...