Deprecated: strlen(): Passing null to parameter #1 ($string) of type string is deprecated in /home/alofiqco/mnhlel3lm.com/qa-include/qa-db.php on line 642

Deprecated: strlen(): Passing null to parameter #1 ($string) of type string is deprecated in /home/alofiqco/mnhlel3lm.com/qa-include/qa-base.php on line 722

Deprecated: strlen(): Passing null to parameter #1 ($string) of type string is deprecated in /home/alofiqco/mnhlel3lm.com/qa-include/util/string.php on line 702

Deprecated: substr(): Passing null to parameter #1 ($string) of type string is deprecated in /home/alofiqco/mnhlel3lm.com/qa-include/pages/question.php on line 185

Deprecated: strlen(): Passing null to parameter #1 ($string) of type string is deprecated in /home/alofiqco/mnhlel3lm.com/qa-include/pages/question.php on line 198

Deprecated: strlen(): Passing null to parameter #1 ($string) of type string is deprecated in /home/alofiqco/mnhlel3lm.com/qa-include/util/string.php on line 702

Deprecated: strlen(): Passing null to parameter #1 ($string) of type string is deprecated in /home/alofiqco/mnhlel3lm.com/qa-include/util/string.php on line 702

Deprecated: strlen(): Passing null to parameter #1 ($string) of type string is deprecated in /home/alofiqco/mnhlel3lm.com/qa-include/pages/question-view.php on line 473

Deprecated: strlen(): Passing null to parameter #1 ($string) of type string is deprecated in /home/alofiqco/mnhlel3lm.com/qa-include/util/string.php on line 702

Deprecated: strlen(): Passing null to parameter #1 ($string) of type string is deprecated in /home/alofiqco/mnhlel3lm.com/qa-include/util/string.php on line 702

Deprecated: strlen(): Passing null to parameter #1 ($string) of type string is deprecated in /home/alofiqco/mnhlel3lm.com/qa-include/qa-base.php on line 722

Deprecated: strlen(): Passing null to parameter #1 ($string) of type string is deprecated in /home/alofiqco/mnhlel3lm.com/qa-include/qa-base.php on line 722
اكتب دالة استدعاء تكرارية بلغة البايثون لحساب مجموع كل الأرقام الزوجية في قائمة معينة - مناهل العلم

  • Deprecated: strlen(): Passing null to parameter #1 ($string) of type string is deprecated in /home/alofiqco/mnhlel3lm.com/qa-include/qa-theme-base.php on line 649
    الأسئلة
    Deprecated: strlen(): Passing null to parameter #1 ($string) of type string is deprecated in /home/alofiqco/mnhlel3lm.com/qa-include/qa-theme-base.php on line 662

  • Deprecated: strlen(): Passing null to parameter #1 ($string) of type string is deprecated in /home/alofiqco/mnhlel3lm.com/qa-include/qa-theme-base.php on line 649
    اطرح سؤالاً
    Deprecated: strlen(): Passing null to parameter #1 ($string) of type string is deprecated in /home/alofiqco/mnhlel3lm.com/qa-include/qa-theme-base.php on line 662
0 تصويتات

Deprecated: strlen(): Passing null to parameter #1 ($string) of type string is deprecated in /home/alofiqco/mnhlel3lm.com/qa-include/qa-theme-base.php on line 117

Deprecated: strlen(): Passing null to parameter #1 ($string) of type string is deprecated in /home/alofiqco/mnhlel3lm.com/qa-include/qa-theme-base.php on line 119
في تصنيف تعليم بواسطة (2.5مليون نقاط)

اكتب دالة استدعاء تكرارية بلغة البايثون لحساب مجموع كل الأرقام الزوجية في قائمة معينة، 

نسعد بكم احبائنا زوار وطلاب ومتصفحين على اختياركم منصتنا التعليمية مناهل العلم للإجابة عن سؤالكم الذي تبحثون عنه.

اكتب دالة استدعاء تكرارية بلغة البايثون لحساب مجموع كل الأرقام الزوجية في قائمة معينة

ونحن طاقم موقع مناهل العلم بدورنا نتشرف بثقتكم ونسعى جاهدين في تقديم أدق الحلول النموذجية والصحيحة لكافة الأسئلة والمواضيع التي تقومون بطرحها ومنها السؤال الآتي:

اكتب دالة استدعاء تكرارية بلغة البايثون لحساب مجموع كل الأرقام الزوجية في قائمة معينة ؟ 

الإجابة النموذجية هي:

الإجابة في مربع التعليمات في الأسفل.


Deprecated: strlen(): Passing null to parameter #1 ($string) of type string is deprecated in /home/alofiqco/mnhlel3lm.com/qa-include/qa-theme-base.php on line 934

Deprecated: strlen(): Passing null to parameter #1 ($string) of type string is deprecated in /home/alofiqco/mnhlel3lm.com/qa-include/qa-theme-base.php on line 934

1 إجابة واحدة

0 تصويتات

Deprecated: strlen(): Passing null to parameter #1 ($string) of type string is deprecated in /home/alofiqco/mnhlel3lm.com/qa-include/qa-theme-base.php on line 117

Deprecated: strlen(): Passing null to parameter #1 ($string) of type string is deprecated in /home/alofiqco/mnhlel3lm.com/qa-include/qa-theme-base.php on line 119
بواسطة (2.5مليون نقاط)
 
أفضل إجابة

لحساب مجموع كل الأرقام الزوجية في قائمة معينة باستخدام دالة استدعاء تكرارية في لغة البايثون، يمكن كتابة الكود التالي:

def sum_even_numbers(numbers_list):
    if len(numbers_list) == 0:  # قاعدة الحالة: إذا كانت القائمة فارغة
        return 0

    current_number = numbers_list[0]
    rest_of_list = numbers_list[1:]

    if current_number % 2 == 0:  # إذا كان الرقم الحالي زوجيًا
        return current_number + sum_even_numbers(rest_of_list)
    else:
        return sum_even_numbers(rest_of_list)

# Exmaple usage
numbers = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
result = sum_even_numbers(numbers)
print(result)

هذه الدالة sum_even_numbers تأخذ قائمة من الأرقام كمدخل وتقوم بحساب مجموع الأرقام الزوجية في القائمة. تقوم الدالة بفحص كل عنصر في القائمة، إذا كان العنصر زوجيًا يتم إضافته إلى المجموع، ثم يتم استدعاء الدالة نفسها مع القائمة المتبقية. تتكرر هذه العملية حتى تنتهي القائمة.


Deprecated: strlen(): Passing null to parameter #1 ($string) of type string is deprecated in /home/alofiqco/mnhlel3lm.com/qa-include/qa-theme-base.php on line 934

Deprecated: strlen(): Passing null to parameter #1 ($string) of type string is deprecated in /home/alofiqco/mnhlel3lm.com/qa-include/qa-theme-base.php on line 934

اسئلة متعلقة


Deprecated: strlen(): Passing null to parameter #1 ($string) of type string is deprecated in /home/alofiqco/mnhlel3lm.com/qa-include/util/string.php on line 702

Deprecated: strlen(): Passing null to parameter #1 ($string) of type string is deprecated in /home/alofiqco/mnhlel3lm.com/qa-include/app/format.php on line 576

Deprecated: strlen(): Passing null to parameter #1 ($string) of type string is deprecated in /home/alofiqco/mnhlel3lm.com/qa-include/util/string.php on line 702

Deprecated: strlen(): Passing null to parameter #1 ($string) of type string is deprecated in /home/alofiqco/mnhlel3lm.com/qa-include/app/format.php on line 576

Deprecated: strlen(): Passing null to parameter #1 ($string) of type string is deprecated in /home/alofiqco/mnhlel3lm.com/qa-include/util/string.php on line 702

Deprecated: strlen(): Passing null to parameter #1 ($string) of type string is deprecated in /home/alofiqco/mnhlel3lm.com/qa-include/app/format.php on line 576

Deprecated: strlen(): Passing null to parameter #1 ($string) of type string is deprecated in /home/alofiqco/mnhlel3lm.com/qa-include/util/string.php on line 702

Deprecated: strlen(): Passing null to parameter #1 ($string) of type string is deprecated in /home/alofiqco/mnhlel3lm.com/qa-include/app/format.php on line 576

Deprecated: strlen(): Passing null to parameter #1 ($string) of type string is deprecated in /home/alofiqco/mnhlel3lm.com/qa-include/util/string.php on line 702

Deprecated: strlen(): Passing null to parameter #1 ($string) of type string is deprecated in /home/alofiqco/mnhlel3lm.com/qa-include/app/format.php on line 576

Deprecated: strlen(): Passing null to parameter #1 ($string) of type string is deprecated in /home/alofiqco/mnhlel3lm.com/qa-include/qa-theme-base.php on line 934

Deprecated: strlen(): Passing null to parameter #1 ($string) of type string is deprecated in /home/alofiqco/mnhlel3lm.com/qa-include/qa-theme-base.php on line 934
0 تصويتات
1 إجابة
سُئل
Deprecated: strlen(): Passing null to parameter #1 ($string) of type string is deprecated in /home/alofiqco/mnhlel3lm.com/qa-include/qa-theme-base.php on line 117

Deprecated: strlen(): Passing null to parameter #1 ($string) of type string is deprecated in /home/alofiqco/mnhlel3lm.com/qa-include/qa-theme-base.php on line 119
أغسطس 30، 2023 في تصنيف تعليم بواسطة مناهل (2.5مليون نقاط)
0 تصويتات
1 إجابة
سُئل
Deprecated: strlen(): Passing null to parameter #1 ($string) of type string is deprecated in /home/alofiqco/mnhlel3lm.com/qa-include/qa-theme-base.php on line 117

Deprecated: strlen(): Passing null to parameter #1 ($string) of type string is deprecated in /home/alofiqco/mnhlel3lm.com/qa-include/qa-theme-base.php on line 119
أكتوبر 30، 2023 في تصنيف تعليم بواسطة مناهل (2.5مليون نقاط)
0 تصويتات
1 إجابة
سُئل
Deprecated: strlen(): Passing null to parameter #1 ($string) of type string is deprecated in /home/alofiqco/mnhlel3lm.com/qa-include/qa-theme-base.php on line 117

Deprecated: strlen(): Passing null to parameter #1 ($string) of type string is deprecated in /home/alofiqco/mnhlel3lm.com/qa-include/qa-theme-base.php on line 119
فبراير 11، 2024 في تصنيف تعليم بواسطة مناهل (2.5مليون نقاط)
0 تصويتات
1 إجابة
سُئل
Deprecated: strlen(): Passing null to parameter #1 ($string) of type string is deprecated in /home/alofiqco/mnhlel3lm.com/qa-include/qa-theme-base.php on line 117

Deprecated: strlen(): Passing null to parameter #1 ($string) of type string is deprecated in /home/alofiqco/mnhlel3lm.com/qa-include/qa-theme-base.php on line 119
يناير 10، 2025 في تصنيف تعليم بواسطة مناهل (2.5مليون نقاط)
0 تصويتات
1 إجابة
سُئل
Deprecated: strlen(): Passing null to parameter #1 ($string) of type string is deprecated in /home/alofiqco/mnhlel3lm.com/qa-include/qa-theme-base.php on line 117

Deprecated: strlen(): Passing null to parameter #1 ($string) of type string is deprecated in /home/alofiqco/mnhlel3lm.com/qa-include/qa-theme-base.php on line 119
يناير 25، 2023 في تصنيف تعليم بواسطة مناهل (2.5مليون نقاط)

Deprecated: strlen(): Passing null to parameter #1 ($string) of type string is deprecated in /home/alofiqco/mnhlel3lm.com/qa-include/qa-theme-base.php on line 934

Deprecated: strlen(): Passing null to parameter #1 ($string) of type string is deprecated in /home/alofiqco/mnhlel3lm.com/qa-include/qa-theme-base.php on line 934
مرحبًا بك إلى مناهل العلم، حيث يمكنك طرح الأسئلة وانتظار الإجابة عليها من المستخدمين الآخرين.

التصنيفات


  • Deprecated: strlen(): Passing null to parameter #1 ($string) of type string is deprecated in /home/alofiqco/mnhlel3lm.com/qa-include/qa-theme-base.php on line 649
    جميع التصنيفات
    Deprecated: strlen(): Passing null to parameter #1 ($string) of type string is deprecated in /home/alofiqco/mnhlel3lm.com/qa-include/qa-theme-base.php on line 662
  • تعليم (25.0ألف)
  • حلول (6.2ألف)
  • ثقافة (1.3ألف)
  • منوعات (1.3ألف)
...