+ 1
you can see see what your regex is matching by using the group and span methods of the match object.
.group() will show the matched text
.span() the indexed positions of the matched text in the given string
https://code.sololearn.com/cK4JfUVUUTGS/#py