I've got an input "twittr" and a List of all the vowels, and i'm trying to get the script to remove the vowes from the input twittr.
I'm not too sure what to try at this point.
I've got an input "twittr" and a List of all the vowels, and i'm trying to get the script to remove the vowes from the input twittr.
I'm not too sure what to try at this point.
twittr = input("Input : ")
vowels = ['a','e','i','o','u']
for letter in twittr:
if letter in vowels :
twittr = twittr.replace(letter,"")
print(twittr)