[ Write a program to print a given string, replacing all the vowels with '_' ]
st = "Where is this going? Could you please help me understand!"
vowels = "AEIOUaeiou"
for v in vowels:
st = st.replace(v, '_')
print(st)
st = "Where is this going? Could you please help me understand!"
vowels = "AEIOUaeiou"
for v in vowels:
st = st.replace(v, '_')
print(st)