i don't get it, can someone explain me why the output is 12 ? | Sololearn: Learn to code for FREE!
¡Nuevo curso! ¡Todo programador debería aprender IA Generativa!
Prueba una lección gratuita
0

i don't get it, can someone explain me why the output is 12 ?

https://code.sololearn.com/c3FFTOcstvAd/?ref=app

27th Sep 2020, 6:08 PM
Женёк
Женёк - avatar
2 Respuestas
+ 2
def f(x): return g(x)+3%2 def g(x): return x**2+2 print(f(g(1))) g(1) = 1**2+2 = 3 ;now it passed to function f as f(3) f(3) => g(3) + 3%2 => 3**2 + 2 +1 => 9+2 +1 => 12
27th Sep 2020, 6:12 PM
Jayakrishna 🇮🇳
0
thanks a lot, i got it 😊
27th Sep 2020, 6:34 PM
Женёк
Женёк - avatar