Ibuprofeno.py馃拪| #140: Explica este c贸digo Python

Cristian Fernando - Jul 13 - - Dev Community

Explica este c贸digo Python

Dificultad: F谩cil

def f(a,b):
    """
    f suma dos numeros pasados por parametro
    a -> int
    b -> int
    """
    return a + b

print(help(f))
Enter fullscreen mode Exit fullscreen mode
  • A. None
  • B. SyntaxError
  • C. 0
  • D.
    f suma dos numeros pasados por parametro
    a -> int
    b -> int
Enter fullscreen mode Exit fullscreen mode

Respuesta:
  • D.
    f suma dos numeros pasados por parametro
    a -> int
    b -> int
Enter fullscreen mode Exit fullscreen mode

En Python podemos documentar una funci贸n haciendo uso del comentario con triple comilla (dentro de la funci贸n per ser) y posteriormente llamando a la funci贸n help() con el nombre de la funci贸n.

De esta manera veremos toda la documentaci贸n de la funci贸n por consola.

La funci贸n help() no solo sirve para funciones propias, sino que tambi茅n puede usarse con cualquier funci贸n pre definida de Python.

. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
Terabox Video Player