Get started learning Python with DataCamp's free Intro to Python tutorial. Learn Data Science by completing interactive coding challenges and watching videos by expert instructors. Start Now!

This site is generously supported by DataCamp. DataCamp offers online interactive Python Tutorials for Data Science. Join 11 million other learners and get started learning Python for data science today!

Good news! You can save 25% off your Datacamp annual subscription with the code LEARNPYTHON23ALE25 - Click here to redeem your discount

الدوال اللامبدا


عادةً ما نعرّف دالة باستخدام الكلمة المفتاحية def في مكان ما في الشيفرة وندعوها كلما احتجنا إلى استخدامها.

def sum(a,b):
    return a + b

a = 1
b = 2
c = sum(a,b)
print(c)

الآن بدلاً من تعريف الدالة في مكان ما واستدعائها، يمكننا استخدام دوال lambda في بايثون، وهي دوال تُعرف ضمنياً في المكان الذي نستخدمها فيه. لذا لا نحتاج إلى إعلان دالة في مكان ما وإعادة زيارة الشيفرة فقط لاستخدامها مرة واحدة.

لا تحتاج دوال lambda إلى اسم، لذا تُعرف أيضاً بالدوال المجهولة. نعرف دالة lambda باستخدام الكلمة المفتاحية lambda.

your_function_name = lambda inputs : output

إذن المثال السابق للمجموع باستخدام دالة lambda سيكون،

a = 1
b = 2
sum = lambda x,y : x + y
c = sum(a,b)
print(c)

هنا نقوم بإسناد دالة lambda إلى المتغير sum، وعند تقديم المتغيرات، أي a و b، تعمل كأنها دالة عادية.

Exercise

اكتب برنامجاً يستخدم دوال lambda للتحقق مما إذا كان العدد في القائمة المعطاة فردياً. اطبع "True" إذا كان العدد فردياً أو "False" إذا لم يكن كذلك لكل عنصر.

l = [2,4,7,3,14,19] for i in l: # your code here l = [2,4,7,3,14,19] for i in l: # your code here my_lambda = lambda x : (x % 2) == 1 print(my_lambda(i)) test_output_contains("False") test_output_contains("False") test_output_contains("True") test_output_contains("True") test_output_contains("False") test_output_contains("True") success_msg("Nice work!")

This site is generously supported by DataCamp. DataCamp offers online interactive Python Tutorials for Data Science. Join over a million other learners and get started learning Python for data science today!

Previous Tutorial Next Tutorial Take the Test
Copyright © learnpython.org. Read our Terms of Use and Privacy Policy