+ 1
Pls explain this code{python}
Pls can u explain this code ..why it didn't print adding value? https://code.sololearn.com/c8T00QEla6lQ/?ref=app
3 ответов
+ 5
first, change the print on line 14 to add_num_deco.
then either wrap the f(i, j) on line 7 in a print. (recommended).
or change the return on line 13 to a print. (not recommended).
0
because you indented the print(add_num(5,6)) on line 14, the interpreter puts it in the add_num function.
0
LONGTIE👔 okay! I edited this code and now line 14 isn't intended
. but Still not working .. it's printing none!