VICTOR JOSUE CONTRERAS CAMPOS

All generations.

generate functionSat, 20 May 2023

Escribir una frase y luego dividir las vocales

def hello_world(): print("Hello World") hello_world() def vowel_divider(sentence): vowels = "AEIOU" for vowel in vowels: print("{} : {}".format(vowel, sentence.count(vowel))) print("----------------------") vowel_divider("Hola, este es un ejemplo") vowel_divider("Hello, this is an example")

Python
View

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