Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- text = input()
- vowels = 'aeiouAEIOU'
- text_without_vowels = ''.join([char for char in text if char not in vowels])
- print(text_without_vowels)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement