I came across the website rubular.com, and their example regex was :
(?<month>\d{1,2})\/(?<day>\d{1,2})\/(?<year>\d{4})
where the months, day, and year encased in the < > tags each group with that name.
I'm wondering if there's a way to do that in Python since I couldn't find it in the documentation.