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 7451d69 commit 13681fdCopy full SHA for 13681fd
README.md
@@ -24,4 +24,7 @@ def anti_vowel(text):
24
text = text.lower()
25
vowels = ['a','e','i','o','u']
26
return ''.join([x for x in text if x not in vowels])
27
+
28
+anti_vowel(python)
29
+Output: 's gng t b th lngg f chc'
30
```
0 commit comments