-4

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.

enter image description here

I'm not too sure what to try at this point.

1 Answers1

0
twittr = input("Input : ")

vowels  = ['a','e','i','o','u']

for letter in twittr:
    if letter in vowels :
        twittr = twittr.replace(letter,"")
    

print(twittr)
Thisal
  • 64
  • 4