Which of the following import statements will add the ability to parse data with regular expressions to your script?
from regex import re
import re
from re import regex
import regex
Submit