Question d’entretien chez Gramener

Python - Find length of each vowels in a string

Réponses aux questions d'entretien

Utilisateur anonyme

26 févr. 2017

a= "senior" b= 0 for i in a: if i in ['a',e',i',o',u']: b+=1 print(b)

Utilisateur anonyme

24 nov. 2018

sum([i in ['a','e','i','o','u'] for i in s])