Inconspicuous and unclear! ! ! Why are you doing lessons? Irritating!? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 7

Inconspicuous and unclear! ! ! Why are you doing lessons? Irritating!?

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

7th Mar 2018, 10:57 PM
Vučko/Вучко/Vuchko
Vučko/Вучко/Vuchko - avatar
4 Answers
+ 6
what is your problem exactly?
7th Mar 2018, 11:17 PM
Vukan
Vukan - avatar
+ 3
''' never feel uneasy,it follows simple math rules. Always asked question here, whenever you feel uneasy about your Program learning. ''' #named function def polynomial(x): return x**2 + 5*x + 4 print(polynomial(-4)) ''' (-4)**2+5*(-4)+4=16-20+4=20-20=0 ''' #lambda print((lambda x: x**2 + 5*x + 4) (-8)) ''' (-8)**2 + 5*(-8) + 4 = 64 -40 + 4 = 28 '''
8th Mar 2018, 1:41 AM
📈SmileGoodHope📈
📈SmileGoodHope📈 - avatar
0
im sorry for my dumb question. how did x become -8 in lambda? sorry again
23rd Aug 2018, 3:03 PM
mlemlem
mlemlem - avatar
0
I'm also new here, but the x became -8 because thats the value in the brackets immediately following the lambda bracket. also the lambda answer is 0 when you use -4 as the argument (like in example) and not -8. Where did your -8 come from?
4th Oct 2018, 11:33 AM
Tobie Olivier