Skip to content

Commit 34683b7

Browse files
Automatic Push
1 parent 9b11cca commit 34683b7

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,8 @@ Easy | Medium | Hard
1919

2020
```python
2121
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])
2226
```

0 commit comments

Comments
 (0)