0
Can you say how does this code work?
def tripler(orig_func): def my_function(orig_val): return(orig_func(orig_val)*3) return(my_function) @tripler def doubler(user_input): return(user_input*2) print(doubler(5))
2 Respuestas
+ 4
In fact it doesn't. )
0
Now?