itselliekojo4336 itselliekojo4336 04-04-2024 Computers and Technology contestada Which of the following regular expressions would extract ' ' from this string using re.findall?A) re.findall(r'\s+', string)B) re.findall(r'\S+', string)C) re.findall(r'\w+', string)D) re.findall(r'\d+', string)