مراجعة: وظيفة len بشكل سهل سهل وممتع

[python]
مرحبًا بالمبرمجين والمبرمجات! :wave:

هل سبق ووجدتم أنفسكم تسألون: “كم عنصر يوجد في هذه القائمة؟ :thinking:” أو “ما طول هذه السلسلة النصية؟ :straight_ruler:”. حسنًا، هنا يأتي دور البطل الخارق len! :man_superhero:

len هو الوظيفة المثالية عندما يتعلق الأمر بعدّ الأشياء (وكما تعلمون، العدّ مهم :sweat_smile:). بضغطة واحدة، يقوم len بإخبارك بعدد العناصر في القائمة، أو عدد الأحرف في النص، أو حتى طول المصفوفات في البيانات. :bar_chart:

إليكم مثال سريع وبسيط:

my_list = [1, 2, 3, 4, 5]
print(len(my_list))  # النتيجة؟ 5!

نعم، الأمر بهذه السهولة! :blush:

وإذا كنتم من محبي التفاعل، شاركونا: ما أطول سلسلة نصية تعاملتم معها باستخدام len؟ أو ما أغرب شيء استخدمتم فيه len؟ اتركوا تعليقكم في الأسفل :point_down:


Hello, programmers! :wave:

Have you ever found yourself wondering, “How many items are in this list? :thinking:” or “How long is this string? :straight_ruler:”. Well, that’s where the superhero len comes in! :man_superhero:

len is the perfect function when it comes to counting things (and we all know counting is important :sweat_smile:). 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. :bar_chart:

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! :blush:

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 :point_down:

إعجابَين (2)