Skip to content

Commit afa54a0

Browse files
committed
Next commit
1 parent d2eeb01 commit afa54a0

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

vowel_finder.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
usrinput=input("Please enter a word \n")
2+
print(type(usrinput))
3+
l = ['a','e','i','o','u','A','E','I','O','U']
4+
5+
if l in usrinput:
6+
print("It contains vowels")
7+
else:
8+
print("It doesn't contains vowels")

0 commit comments

Comments
 (0)