+ 2
Functional Programming
def apply_twice(func, arg): return func(func(arg)) def take_three(func,arg): return func(func(arg)) def subtract_three(y): return y - 3 def add_five(x): return x + 5 print(take_three(subtract_three((apply_twice(add_five, 10))) I want to subtract 3 twice from the value 20 that results from the apply_twice function. I am getting an EOF error. HELP!!
2 Answers
+ 4
calm down
simply a bracket before apply too muchđ€
and one too less at end.
+ 4
Wi$e Xhi8F
Please link your prog next time by applying
"insert" on your post.