Skip to content

Commit 6a7496a

Browse files
committed
main file code
1 parent f7f26c2 commit 6a7496a

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

vowel remover function.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,7 @@ def vowel_remover(text):
44
if l.lower() not in "aeiou":
55
string += l
66
return string
7-
print(vowel_remover("hello world!"))
7+
8+
# this code runes on only this file
9+
if __name__=="__main__":
10+
print(vowel_remover("hello world!"))

0 commit comments

Comments
 (0)