Courses
Courses
Code Compiler
Code Compiler
Discuss
Pricing
Teams
Log in
Register
Menu
Q&A Discussions
Search
Search
Ask a question
Ask a question
What is func(func(arg)) in python functional programming
functions
0 Votes
2 Answers
25th May 2020, 11:16 AM
Bavith
def test(func, arg): return func(func(arg)) def mult(x): return x * x print(test(mult, 2))
functions
python
0 Votes
11 Answers
9th May 2017, 4:52 AM
AJITH KUMAR
def apply_twice(func,arg): return func(func(arg)) def add_five(x): return x + 5 print(apply_twice(add_five,10)) #output:20
python
python3
0 Votes
6 Answers
13th Oct 2021, 5:55 PM
Khalif Babyđ¶
def apply_twice(func, arg): return func(func(arg)) def add_five(x): return x + 5 print(apply_twice(add_five, 10))
functions
1 Vote
6 Answers
22nd Jul 2018, 3:14 PM
ADITYA SINHA
def apply_twice(func, arg): return func(func(arg)) def add_five(x): return x + 5 print(apply_twice(add_five, 10))
functions
1 Vote
4 Answers
25th Jul 2018, 10:03 AM
Tijani Julius
def apply_twice(func, arg): return func(func(arg)) def add_five(x): return x + 5 print(apply_twice(add_five, 10))
functions
1 Vote
2 Answers
18th Jun 2019, 12:55 PM
Ranjeet singh jitty
def apply_twice(func, arg): return func(func(arg)) def add_five(x): return x + 5 print(apply_twice(add_five, 10))
functions
python3
0 Votes
2 Answers
2nd Aug 2019, 7:24 AM
SUNDARAMAN IYER
python
5
add_five(x):
apply_twice(func
arg):
def
func(func(arg))
funcdef
return
x
0 Votes
1 Answer
21st Nov 2017, 6:02 PM
ilham
Ask a question
Ask a question
Ask a question
Ask a question
Hot today
How to allow one instance of exe
2 Votes
Reverse observer pattern : remove dynamic_cast
2 Votes
What has happened?
1 Votes
Theater management help me
2 Votes
Python
1 Votes
What should I add/improve ?
1 Votes
Should You Specialize or Diversify in Programming?
1 Votes
Tools for web design?
1 Votes
Flight tracker coding foundation help me
1 Votes
Remove raw pointer from observer design pattern
0 Votes