التعامل مع النصوص في البايثون Strings - برمجة بايثون
برمجة بايثون | Python programming برمجة | Programming
جامعة الاسكندرية
- 2025-04-20
التعامل مع النصوص في البايثون Strings
في الفيديو ده هنتكلم عن واحد من أهم أنواع البيانات في بايثون، وهو النصوص (Strings). أي برنامج بيتعامل مع كلام أو حروف أو جمل، لازم يستخدم النصوص بشكل أساسي.
هنبدأ بشرح إزاي نعرّف النصوص في بايثون باستخدام علامات الاقتباس المفردة ' أو المزدوجة "، وهنعرف الفرق بينهم وإمتى نستخدم كل نوع.
كمان هنتعلم إزاي نطبع النصوص، ونوصل بينها باستخدام عملية الدمج (concatenation)، ونكررها بعدد معين، ونتعامل مع المتغيرات النصية داخل الجمل.
هنشرح شوية دوال مهمة للتعامل مع النصوص زي:
-
len() لعدّ الأحرف
-
lower() و upper() لتغيير حالة الحروف
-
strip() لإزالة المسافات
-
replace() لتعديل أجزاء من النص
كمان هنتكلم عن الفهارس (indexing) والتقطيع (slicing) علشان نوصل لأي جزء من النص أو نطلّع كلمات معينة منه.
الفيديو ده خطوة أساسية لأي مبرمج مبتدئ، وهيساعدك تفهم إزاي تتعامل مع النصوص بمرونة واحتراف في مشاريعك.
----------------------------
Working with Strings in Python In this video, we’ll discuss one of the most important data types in Python: Strings. Any program that deals with words, letters, or sentences must use strings as a core component. We’ll start by explaining how to define strings in Python using single quotes (' ') or double quotes (" "), and we’ll clarify the difference between them and when to use each type. We’ll also learn how to: Print strings Combine them using concatenation Repeat them a specific number of times Handle string variables within sentences We’ll cover some essential string functions, such as: len() – to count characters lower() and upper() – to change letter cases strip() – to remove spaces replace() – to modify parts of a string Additionally, we’ll talk about indexing and slicing to access specific parts of a string or extract certain words from it. This video is a fundamental step for any beginner programmer and will help you understand how to work with strings flexibly and professionally in your projects
هل كان الشرح مفيد؟

- 5/5
شروحات مشابهة
- برمجة بايثون | Python programming
- برمجة | Programming
- برمجة | Programming
- برمجة سي شارب | c# programming
- برمجة جافا | Java programming
- برمجة بي اتش بي | Php programming
- برمجة html | Html programming
- برمجة سي اس اس | Css programming
- برمجة روبي | Ruby programming