Write a program to input a sentence and pront no of vowels in each word along with the word
Answers
Answered by
0
write a program in which language?
Answered by
0
Explanation:
s = input("enter string")
k = s.split()
v ="aeiouAEIOU"
for i in k:
for j in v:
if j in i:
print(i,j)
mark me as brainly
Similar questions