Focus mode
first class function
olarak değerlendirilir. Bunun anlamı fonksiyonların diğer veri tipleri gibi manipüle edilebilir ve başka fonksiyonlara argüman olarak verilebilir.def kare(x):
return x**2
a = kare
kare(5)
25
a(5)
25
def f2(x, f):
return f(x) + 4
f2(3,kare)
13
def f3(x):
return x**5
f2(2, f3)
36
Programs to Accelerate Your Progress in a Software Career
Join our 4-8 month intensive Patika+ bootcamps, start with the fundamentals and gain comprehensive knowledge to kickstart your software career!
You need to enroll in the course to be able to comment!