Ejercicio
Función Para Encontrar El Valor Máximo En Una Matriz
Objectivo
Desarrollar un programa Python que contenga una función que acepte una lista de números de punto flotante como entrada y devuelva el valor máximo dentro de la lista: data = [1.5, 0.7, 8.0] max_value = maximum(data)
Ejemplo de ejercicio de Python
Mostrar código Python
# Function to find the maximum value in a list of floating-point numbers
def maximum(data):
# Return the maximum value from the list
return max(data)
# Main function to demonstrate the maximum function
def main():
# Input list of floating-point numbers
data = [1.5, 0.7, 8.0]
# Call the maximum function and store the result
max_value = maximum(data)
# Print the result
print(f"The maximum value in the list is {max_value}")
# Run the main function
if __name__ == "__main__":
main()
Output
The maximum value in the list is 8.0
Código de ejemplo copiado
Comparte este ejercicio de Python