We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d2eeb01 commit afa54a0Copy full SHA for afa54a0
vowel_finder.py
@@ -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