User inputs a word. Programmesays if it has vowels or not
1
Expert's answer
2022-06-26T09:23:41-0400
inp_string = str(input())
VOWELS = 'aeiou'
for i in range(5):
if VOWELS[i] in inp_string.lower():
print("There're vowels")
break
else:
print("There aren't vowels")
Numbers and figures are an essential part of our world, necessary for almost everything we do every day. As important…
APPROVED BY CLIENTS
"assignmentexpert.com" is professional group of people in Math subjects! They did assignments in very high level of mathematical modelling in the best quality. Thanks a lot
Comments
Leave a comment