Today, 2015 August 21st, I am going to embark on a journey of completing 100 python problems. Ranging from increasing complexities from 1-3.
Easy | Medium | Hard |
---|---|---|
1 | 2 | 3 |
>“I know it seems hard sometimes but remember one thing. >Through every dark night, there's a bright day after that. >So no matter how hard it get, stick your chest out, >keep ya head up.... and handle it.”
― Tupac Shakur
python = 'is going to be the language of choice'
def anti_vowel(text):
text = text.lower()
vowels = ['a','e','i','o','u']
return ''.join([x for x in text if x not in vowels])