Computer Science, asked by poddarsatakshi, 8 months ago

Write a program to input a sentence and pront no of vowels in each word along with the word

Answers

Answered by R15H4B
0

write a program in which language?

Answered by RuwaisnZaid
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