“Trouver le nombre de voyelles dans String Python” Réponses codées

Comptez combien de voyelles dans une chaîne Python

def vowel_count(string):
  vowels = ['a', 'e', 'i', 'o', 'u']
  return len([i for i in string if i in vowels])
the real Professor Poopypants

Trouver le nombre de voyelles dans String Python

string = list(map(str, input().lower()))
lst = []
for i in range(0, len(string)):
  if string[i]=='a' or string[i]=='e' or string[i]=='i' or string[i]=='o' or string[i]=='u':
    lst.append(string[i])
print(len(lst))
vip_codes

Réponses similaires à “Trouver le nombre de voyelles dans String Python”

Questions similaires à “Trouver le nombre de voyelles dans String Python”

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code