Ejercicio
Función Retorno De Valor V2
Objectivo
Desarrolla un programa Python en el que la función principal debería verse así:
def main():
print("\"Hola, ¿cómo estás?\" contiene {0} espacios".format(count_spaces("Hola, ¿cómo estás?"))
Debes definir la función `count_spaces`, y se llamará desde dentro de la función principal.
Como se muestra en el ejemplo, debe aceptar una cadena como parámetro y devolver un entero (la cantidad de espacios en esa cadena).
Ejemplo de ejercicio de Python
Mostrar código Python
# Define the count_spaces function that accepts a string as a parameter
def count_spaces(input_string):
# Count the number of spaces in the input string using the count method
return input_string.count(' ') # This will return the count of spaces in the string
# Main function to execute the program
def main():
# Print the result using the format method, calling count_spaces with a string as argument
print("\"Hello, how are you\" contains {0} spaces".format(count_spaces("Hello, how are you"))) # It will print the number of spaces in the string
# Call the main function to run the program
main() # This triggers the execution of the count_spaces function and prints the result
Output
"Hello, how are you" contains 4 spaces
Código de ejemplo copiado
Comparte este ejercicio de Python