我想知道单词中有多少个值

时间:2019-11-12 11:51:30

标签: python

所以我要输入5个变量,我想知道每个单词中有多少个元音。然后像这样将它们放在字典中-----> {0(索引):3(元音)}

Vowels = ['a','i','u','o''e']
Variable = input("Write 5 words ").split(",")
for i in Variable:
    for l in i:
    if l in Vowels:
      vowels.append(l)

我只用一个字就不能读元音。我试图做这样的事情:

dict[i] = len(l)

但请确保它不起作用

0 个答案:

没有答案