write a program which replaces all vowels inthe string with '*'
PYTHON
Answers
Answered by
10
Answer:
Explanation:
str=input("enter string")
for char in str:
if char in 'aeiouAEIOU':
str=str.replace(char,'*')
print(str)
Similar questions