What is the output of the expression re.split(r'[aeiou]’, ‘abcdefghij’)?

QuestionsCategory: Python 3What is the output of the expression re.split(r'[aeiou]’, ‘abcdefghij’)?
admin Staff asked 3 years ago

Answer: [”, ‘bcd’, ‘fgh’, ‘j’]