Login
Remember
Register
Ask a Question
Which of the following methods of a match object, mo, is used to view the named group portions of match in the form of a dictionary
0
votes
asked
Jan 11, 2021
in
Python
by
SakshiSharma
Which of the following methods of a match object, mo, is used to view the named group portions of match in the form of a dictionary
i) mo.group()
ii) mo.dict()
iii) mo.gdict()
iv) mo.groupdict()
#python-object
#object
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 iv) mo.groupdict()
...