مراجعة درس: أشهر الدوال (Methods) في بايثون وكيف تجعل البرمجة أكثر متعة

[python]

درس: أشهر الدوال (Methods) في بايثون وكيف تجعل البرمجة أكثر متعة!

عنوان الدرس: رحلة في عالم الدوال في بايثون: كن ساحر الكود!


مقدمة:

في عالم البرمجة، الدوال (Methods) هي مثل الأدوات السحرية التي تساعدك على إنجاز مهامك بسرعة وبشكل أنيق. في هذا الدرس، سنأخذك في جولة سريعة حول بعض أشهر هذه الدوال في بايثون، وسنكتشف كيف يمكنها أن تجعل حياتك البرمجية أكثر متعة. لا تقلق، سنبقي الأمور خفيفة وبسيطة، مع القليل من روح الدعابة لتحلية الكود!


1. len() - طول أي شيء في لمح البصر!

تخيل لو عندك نص طويل أو قائمة مليئة بالأشياء، وتريد معرفة طولها بسرعة؟ لا مشكلة! الدالة len() تقوم بهذا العمل في ثانية واحدة.

text = "Hello"
length = len(text)  # بيرجع 5

هذه الدالة مثل القلم السحري الذي يكتب لك الرقم المناسب على الفور. مثالي إذا كنت مشغولاً وتريد اختصار الوقت!


2. append() - أضف المزيد من المرح إلى قائمتك!

عندما تشعر بأن قائمتك ناقصة وتحتاج إلى إضافة شيء جديد، هنا تأتي الدالة append() لتحل المشكلة. مثل صديق يأتي متأخراً إلى الحفلة ولكنه دائمًا مرحب به.

my_list = [1, 2, 3]
my_list.append(4)  # بيخلي القائمة [1, 2, 3, 4]

3. split() - قسم النصوص مثل خبير الطهاة!

إذا كنت تحب الطبخ، فكر في split() كأنها السكين التي تقطع النص إلى أجزاء صغيرة لذيذة. مثالية عندما تحتاج إلى تحويل جملة إلى كلمات فردية.

text = "Hello,World"
parts = text.split(",")  # بيرجع ['Hello', 'World']

4. join() - جمع الشتات في ثوانٍ!

بعد أن قسمنا النصوص، ماذا لو أردنا جمعها مرة أخرى؟ هنا تأتي join()، مثل الغراء الذي يجمع كل شيء معًا بسلاسة.

words = ["Hello", "World"]
sentence = " ".join(words)  # بيرجع 'Hello World'

5. upper() و lower() - تغير النبرة!

هل تشعر بأن النص بحاجة إلى نبرة أعلى أو أدنى؟ upper() و lower() هما الدوال التي تغير نبرة النص الخاص بك كما تحب.

text = "Hello"
upper_text = text.upper()  # بيرجع "HELLO"
lower_text = text.lower()  # بيرجع "hello"

6. range() - أرقام على الطلب!

إذا كنت تريد أرقامًا متتالية لأغراض مختلفة، استخدم range()! مثل ماكينة قهوة تصب لك الأرقام حسب الطلب.

for i in range(5):  # بيكرر من 0 إلى 4
    print(i)

7. strip() - تخلص من الزوائد!

إذا كان النص مليئًا بالمسافات غير المرغوب فيها، استخدم strip() لتنظيفه مثلما تقوم بكنس الأتربة من الغرفة.

text = "  Hello  "
clean_text = text.strip()  # بيرجع "Hello"

8. find() - الباحث الذكي!

إذا كنت تبحث عن حرف أو كلمة معينة في النص، فإن find() هو الباحث الذكي الذي يجد ما تبحث عنه في لمح البصر.

text = "Hello"
position = text.find("e")  # بيرجع 1

9. replace() - المبدل السحري!

إذا كنت بحاجة إلى تغيير جزء من النص، فإن replace() هو العصا السحرية التي تغير الكلمة إلى ما تريده.

text = "Hello World"
new_text = text.replace("World", "Python")  # بيرجع "Hello Python"

10. type() - من أنت؟

أحيانًا نحتاج لمعرفة نوع المتغيرات، وهنا يأتي type() ليخبرنا بنوعها بسرعة. مثل بطاقة تعريف للمتغيرات.

x = 10
print(type(x))  # بيرجع <class 'int'>

الخاتمة:

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



Lesson: Famous Python Methods and How They Make Coding Fun!

Lesson Title: A Journey into Python Methods: Become a Code Wizard!


Introduction:

In the world of programming, methods are like magical tools that help you accomplish tasks quickly and elegantly. In this lesson, we’ll take you on a quick tour of some of the most famous Python methods and show you how they can make your coding life more fun. Don’t worry, we’ll keep things light and simple, with a dash of humor to sweeten the code!


1. len() - Length of Anything in a Snap!

Imagine you have a long string or a list full of items, and you want to know its length quickly? No problem! The len() method does the job in a second.

text = "Hello"
length = len(text)  # Returns 5

This method is like a magic pen that instantly writes the right number for you. Perfect if you’re busy and want to save time!


2. append() - Add More Fun to Your List!

When you feel your list is missing something and needs a new addition, the append() method comes to the rescue. It’s like a friend who shows up late to the party but is always welcome.

my_list = [1, 2, 3]
my_list.append(4)  # Makes the list [1, 2, 3, 4]

3. split() - Slice Text Like a Master Chef!

If you love cooking, think of split() as the knife that slices text into delicious little pieces. Perfect for when you need to turn a sentence into individual words.

text = "Hello,World"
parts = text.split(",")  # Returns ['Hello', 'World']

4. join() - Unite the Pieces in Seconds!

After slicing texts, what if we want to glue them back together? That’s where join() comes in, like the glue that smoothly brings everything together.

words = ["Hello", "World"]
sentence = " ".join(words)  # Returns 'Hello World'

5. upper() and lower() - Change the Tone!

Need to shout or whisper in your text? upper() and lower() are the methods that adjust your text’s tone as you like.

text = "Hello"
upper_text = text.upper()  # Returns "HELLO"
lower_text = text.lower()  # Returns "hello"

6. range() - Numbers on Demand!

If you want consecutive numbers for different purposes, use range()! It’s like a coffee machine pouring numbers on demand.

for i in range(5):  # Loops from 0 to 4
    print(i)

7. strip() - Get Rid of the Extra!

If your text is full of unwanted spaces, use strip() to clean it up, just like sweeping dust off the floor.

text = "  Hello  "
clean_text = text.strip()  # Returns "Hello"

8. find() - The Smart Finder!

If you’re looking for a specific letter or word in your text, find() is the smart finder that locates what you’re after in a flash.

text = "Hello"
position = text.find("e")  # Returns 1

9. replace() - The Magic Replacer!

If you need to change part of your text, replace() is the magic wand that turns the word into whatever you want.

text = "Hello World"
new_text = text.replace("World", "Python")  # Returns "Hello Python"

10. type() - Who Are You?

Sometimes we need to know the type of variables, and that’s where type() comes in to quickly tell us. It’s like an ID card for variables.

x = 10
print(type(x))  # Returns <class 'int'>

Conclusion:

And there you have it, some of the most famous Python methods you can use daily. These methods make your code easier and more fun, and with a bit of creativity, you can become a real wizard in the world of programming!

إعجابَين (2)