We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9b11cca commit 34683b7Copy full SHA for 34683b7
README.md
@@ -19,4 +19,8 @@ Easy | Medium | Hard
19
20
```python
21
python = 'is going to be the language of choice'
22
+def anti_vowel(text):
23
+ text = text.lower()
24
+ vowels = ['a','e','i','o','u']
25
+ return ''.join([x for x in text if x not in vowels])
26
```
0 commit comments