单项选择题

A.re.search(r’(.*)’,s).group(1)
B.re.search(r’\((.*?)\)’,s).group(1)
C.re.search(r’\((.*?)\)’,s).group(2)
D.re.findall(r’\((.*?)\)’,s)[1]