Split strings on vowels

In this program, we will take a string as input and split strings on vowels.

Steps to solve the program
  1. Take a string as input and import re library.
  2. Split the string on vowels using re.split().
  3. 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
				
			

print the mirror image of the string.

replace multiple words with certain words.

Leave a Comment