Generation

generate functionTue, 25 Apr 2023

Una funcion que cuente las vocales que tiene una palabra

def count_vowels(word): return len([l for l in word if l in 'aeiou']) count_vowels('hello')

Want to kickstart your project?Use the new AI Studio to create your code