正则表达式,这个代码解释一下?

re.findall(' "f3" : (.*?), ' ,response.text)
response.text是网站上爬虫所写的

re.findall(' "f3" : (.?), ' ,response.text)
查找response.text里面 符合 "f3" : (.
?), 这个条件的:
就是前面是这个 "f3" :
后面是这个 ,
中间所有的就是符合条件的:.*代表任意字符, ?代表非贪婪,即遇到符合条件的就停止匹配,()为分组