Login
Remember
Register
Ask a Question
Which of the following syntax is used to name a grouped portion of a match?
0
votes
asked
Jan 11, 2021
in
Python
by
SakshiSharma
Which of the following syntax is used to name a grouped portion of a match?
i) ?G<group_name>
ii) ?P<group_name>
iii) <group_name>
iv) ?<group_name>
#python-grouped-portion
#grouped-portion-syntax
Python-questions-answers
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Jan 11, 2021
by
SakshiSharma
Correct Answer to the question is ii) ?P<group_name>
...