Create a function called shortcut
to remove all the lowercase vowels in a given string.
Example
shortcut("codewars") # --> cdwrs
shortcut("goodbye") # --> gdby
Don't worry about uppercase vowels.
def shortcut( s ):
pass
def shortcut( s ):
return "".join([char for char in s if char not in "aeiou"])
def shortcut(s):
return s.translate(None, 'aeiou')