Computer Science, asked by rishurajak, 7 months ago

write a program which replaces all vowels inthe string with '*'
PYTHON​

Answers

Answered by harika555
10

Answer:

Explanation:

str=input("enter string")

for char in str:

   if char in 'aeiouAEIOU':

       str=str.replace(char,'*')

print(str)

Similar questions