This content originally appeared on DEV Community and was authored by Cristian Fernando
Explica este código Python
Dificultad: Intermedio
y = 8
z = lambda x : x * y
print (z(6))
-
A.
48
-
B.
14
-
C.
64
-
D.
Error
Respuesta:
👉 A. 48
La función lambda
solo recibe como parámetro x
pero en el cuerpo de la función multiplicamos x * y
. y
es solo una variable global pero que puede ser accedida por la función para poder hacer el producto.
This content originally appeared on DEV Community and was authored by Cristian Fernando
Cristian Fernando | Sciencx (2024-08-16T11:00:00+00:00) Ibuprofeno.py💊| #163: Explica este código Python. Retrieved from https://www.scien.cx/2024/08/16/ibuprofeno-py%f0%9f%92%8a-163-explica-este-codigo-python/
Please log in to upload a file.
There are no updates yet.
Click the Upload button above to add an update.