Untitled

Anonymous
plain_text
08/16/2024 5:52 AM
292 B
15
Indexable
text = "Hello World!"
# text = "tAbLe"

vowel_list=['a','e','i','o','u','A','E','I','O','U']

for letter in text:
    if letter in vowel_list or not letter.isalpha():
        continue
    print(letter, end=' ')
Editor is loading...
Leave a Comment