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