def anti_vowel(text): anti = "" vowels = ['a','e','i','o','u','a','e','i','o','u'] for char in text: if char not in vowels: anti = anti + char return anti

0

def anti_vowel(text): anti = "" vowels = ['a','e','i','o','u','a','e','i','o','u'] for char in text: if char not in vowels: anti = anti + char return anti

By Beginner ReInstall at Mar 16 2021


Related code examples


Code examples by languages