Does this arrangement match with the Patten of group 1 modern period table
Answers
Answered by
0
Answer:
yes it does
Explanation:
Answered by
0
Answer: The 1 in match.group(1) represents the first parenthesised subgroup. In your case the first of one. This is well described in the official documentation for re.MatchObject.group() and best illustrated with an …example
Code sample
'Isaac'
>>> m.group(2) # The second parenthesized subgroup.
'Newton'
>>> m.group(1, 2) # Multiple arguments give us a tuple.
('Isaac', 'Newton').
Similar questions