“Argumentos de la función de python” Código de respuesta

Función de Python como argumento

def sum(a,b):
    return a+b

def calculate(function,a,b):
    return function(a,b)

calculate(sum,3,4)
#returns 7
AartvB

Argumentos de Python

import sys

print ("the script has the name %s" % (sys.argv[0])
Common Melba Finch

Argumentos de la función de python

def greet(name, msg):
    """This function greets to
    the person with the provided message"""
    print("Hello", name + ', ' + msg)

greet("Monica", "Good morning!")
SAMER SAEID

Respuestas similares a “Argumentos de la función de python”

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código