match_next = re.search(r'(再来週)の(.曜日)', '再来週の月曜日')
when I run match_next.group[1], I got the following:
TypeError: 'builtin_function_or_method' object is not subscriptable
Even if the match fails, why does the group function report this error?