How can I access captured groups if I do findall(r'regex(with)capturing.goes.here') ?
I know I can do it through finditer, but I don’t want to iterate.
How can I access captured groups if I do findall(r’regex(with)capturing.goes.here’) ? I know I
Share
findalljust returns the captured groups:Relevant doc excerpt: