我是新手Python,我有一个字符串,我想从字符串中提取数字。例如:str1 = "3158 reviews"print (re.findall('\d+', str1 ))输出是 ['4', '3']我只想获取3158一个整数,而不是列表。 查看完整描述