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 f7f26c2 commit 6a7496aCopy full SHA for 6a7496a
vowel remover function.py
@@ -4,4 +4,7 @@ def vowel_remover(text):
4
if l.lower() not in "aeiou":
5
string += l
6
return string
7
-print(vowel_remover("hello world!"))
+
8
+# this code runes on only this file
9
+if __name__=="__main__":
10
+ print(vowel_remover("hello world!"))
0 commit comments