In this program, we will take a string as input and split strings on vowels.
Steps to solve the program
- Take a string as input and import re library.
- Split the string on vowels using re.split().
- Print the output.
#Importing re library
import re
#Input string
string = "qwerty"
#Splitting string on vowels
result = re.split('a|e|i|o|u', string)
#Printing output
print(" ".join(result))
Output :
qw rty