Program that accept a string from the user and display the same after removing vowels from it
def rem_vowels(s):
temp_str=''
for i in s:
if i in "aA
eEiIoOuU":
pass
else:
temp_str+=i
print ("The string without vowels: ", temp_str)
str1= input ("Enter a String: ")
rem_vowels (str1)