[python]
مرحبًا بالمبرمجين والمبرمجات!
هل سبق ووجدتم أنفسكم تسألون: “كم عنصر يوجد في هذه القائمة؟ ” أو “ما طول هذه السلسلة النصية؟ ”. حسنًا، هنا يأتي دور البطل الخارق len
!
len
هو الوظيفة المثالية عندما يتعلق الأمر بعدّ الأشياء (وكما تعلمون، العدّ مهم ). بضغطة واحدة، يقوم len
بإخبارك بعدد العناصر في القائمة، أو عدد الأحرف في النص، أو حتى طول المصفوفات في البيانات.
إليكم مثال سريع وبسيط:
my_list = [1, 2, 3, 4, 5]
print(len(my_list)) # النتيجة؟ 5!
نعم، الأمر بهذه السهولة!
وإذا كنتم من محبي التفاعل، شاركونا: ما أطول سلسلة نصية تعاملتم معها باستخدام len
؟ أو ما أغرب شيء استخدمتم فيه len
؟ اتركوا تعليقكم في الأسفل
Hello, programmers!
Have you ever found yourself wondering, “How many items are in this list? ” or “How long is this string? ”. Well, that’s where the superhero len
comes in!
len
is the perfect function when it comes to counting things (and we all know counting is important ). With just one call, len
will tell you the number of items in a list, the number of characters in a string, or even the length of arrays in data.
Here’s a quick and simple example:
my_list = [1, 2, 3, 4, 5]
print(len(my_list)) # The result? 5!
Yes, it’s that easy!
And if you love interaction, share with us: what’s the longest string you’ve dealt with using len
? Or what’s the strangest thing you’ve used len
for? Drop your comments below