[python]
تحدي اليوم: break
- “ابحث عن الرقم السري!”
التحدي:
لديك قائمة تحتوي على مجموعة من الأرقام. الرقم السري مخفي داخل القائمة، ومهمتك هي العثور عليه باستخدام for loop
وbreak
.
ماذا تحتاج لفعله:
- استخدم
for loop
للتنقل بين جميع الأرقام في القائمة. - إذا وجدت الرقم السري، استخدم
break
لإيقاف الحلقة فورًا. - اطبع رسالة تخبرك أنك وجدت الرقم السري.
- إذا انتهت الحلقة دون العثور على الرقم السري، اطبع رسالة تخبرك بذلك.
النتيجة بعد التشغيل:
الرقم السري موجود! إنه 42.
المطلوب لحل التحدي:
- قم بإنشاء قائمة تحتوي على مجموعة من الأرقام.
- حدد الرقم السري داخل هذه القائمة.
- اكتب حلقة
for
للبحث عن الرقم السري. - استخدم
break
لإيقاف الحلقة عند العثور على الرقم. - اطبع النتيجة المناسبة بناءً على وجود أو عدم وجود الرقم السري.
Today’s Challenge: break
- “Find the Secret Number!”
The Challenge:
You have a list of numbers, and there’s a secret number hidden within the list. Your task is to find the secret number using a for loop
and break
.
What You Need to Do:
- Use a
for loop
to iterate through all the numbers in the list. - If you find the secret number, use
break
to stop the loop immediately. - Print a message indicating that you found the secret number.
- If the loop finishes without finding the secret number, print a message indicating that it wasn’t found.
The Output After Running:
The secret number is found! It’s 42.
What’s Required to Solve the Challenge:
- Create a list containing a series of numbers.
- Identify the secret number within the list.
- Write a
for
loop to search for the secret number. - Use
break
to stop the loop when the number is found. - Print the appropriate message based on whether the secret number was found or not.
استمتع بالتحدي في كلتا اللغتين، وتأكد من العثور على الرقم السري باستخدام قوة break
!