[python]
مراجعة اليوم: الـFor Loop - “إعادة الكرة حتى النهاية”
العربية :
هل سبق لك أن وجدت نفسك تكرر نفس العمل مرارًا وتكرارًا؟ مثل قولك “واحد، اثنان، ثلاثة…” أثناء ممارسة التمارين؟ إذاً، مرحبًا بك في عالم الـfor loop
، حيث يتكرر كل شيء بلا ملل!
For Loop: “المدرب الذي يحب التكرار”
- تخيل أنك في صالة رياضية والمدرب يقول لك: “أعد الحركة 10 مرات!” الـ
for loop
هو هذا المدرب، يأخذ قائمة (أو أي مجموعة أخرى) ويطلب منك القيام بشيء معين لكل عنصر في هذه القائمة. - مثال بسيط:
for i in range(5): print("واحد، اثنان، ثلاثة... هيا!")
التسوق مع for loop
- تخيل نفسك في سوبر ماركت وعندك قائمة مشتريات. بدلاً من البحث عن كل عنصر بشكل عشوائي، تستخدم
for loop
للتأكد من أنك لم تنسَ أي شيء. - مثال:
قائمة_المشتريات = ["حليب", "خبز", "بيض"] for عنصر in قائمة_المشتريات: print(f"لا تنسى شراء {عنصر}!")
الـfor loop
في الألعاب: “لعبة المغامرة”
- حتى في الألعاب، إذا كان لديك مجموعة من الأعداء وتريد ضرب كل واحد منهم، الـ
for loop
هو سلاحك السري للتأكد من أنك لم تفوت أحدًا! - مثال:
الأعداء = ["غول", "تنين", "ساحر"] for عدو in الأعداء: print(f"تهجم على {عدو}!")
الخلاصة:
الـfor loop
هو الطريقة التي تجعل البرمجة منظمة وفعالة. إنها الأداة التي تضمن أنك تقوم بتنفيذ نفس الإجراء على مجموعة من العناصر دون تكرار الكود بشكل ممل. تمامًا كما في الحياة الواقعية، نستخدم التكرار لتحقيق أهدافنا، والـfor loop
هي السبيل لتحقيق ذلك في البرمجة!
English :
Have you ever found yourself doing the same thing over and over again? Like counting “One, two, three…” during workouts? Welcome to the world of the for loop
, where repetition is the name of the game!
For Loop: “The Coach Who Loves Reps”
- Imagine you’re at the gym, and the coach says, “Do this exercise 10 times!” The
for loop
is that coach. It takes a list (or any other collection) and makes you do something for each item in that list. - Simple example:
for i in range(5): print("One, two, three... Let's go!")
Shopping with for loop
- Imagine you’re at the supermarket with a shopping list. Instead of randomly picking items, you use the
for loop
to make sure you don’t forget anything. - Example:
shopping_list = ["Milk", "Bread", "Eggs"] for item in shopping_list: print(f"Don't forget to buy {item}!")
for loop
in Games: “Adventure Time”
- Even in games, if you have a bunch of enemies and want to hit each one, the
for loop
is your secret weapon to make sure you don’t miss anyone! - Example:
enemies = ["Goblin", "Dragon", "Wizard"] for enemy in enemies: print(f"Attacking the {enemy}!")
Conclusion:
The for loop
is your way to keep things organized and efficient in programming. It ensures that you perform the same action on a collection of items without boringly repeating your code. Just like in real life, repetition is key to achieving goals, and the for loop
is the tool to do that in code!
[python] بهذا الشكل، سيكون لديك فهم جيد للـfor loop
، مع لمسة من المرح! الآن، استعد لتكرار نجاحك في كل سطر من البرمجة!