دورة تعلم بايثون كاملة - الدرس 8 | شرح String methods - الجزء الاول

Поделиться
HTML-код
  • Опубликовано: 26 янв 2025

Комментарии • 31

  • @CoderShiyar
    @CoderShiyar  3 года назад +2

    رابط موقعنا جديد : shiyarjemo.com/app
    اليك الرابط باقي الحلقات من الدورة Python - اعمل كل ما بوسعي بإنشاء لكم دروس جدد في الايام القادمة : ruclips.net/p/PLMTdZ61eBnyqzCCSnPs65FXPr2ZVKji8B

    • @erlinsteve4850
      @erlinsteve4850 3 года назад

      ruclips.net/video/4nLorZm5amc/видео.html

    • @erlinsteve4850
      @erlinsteve4850 3 года назад

      Subscribe to my channel
      ruclips.net/video/mqhpXv6bEDI/видео.html
      ruclips.net/video/XamnzTk6pco/видео.html
      ruclips.net/video/CLY1-UP8XfA/видео.html
      ruclips.net/video/Xxc-Xr3xEmg/видео.html
      ruclips.net/video/Jac4IYu5mRg/видео.html
      ruclips.net/video/J5TKM5uN53I/видео.html
      ruclips.net/video/FswUYpXucH/видео.html
      ruclips.net/video/414dg5WUZjY/видео.html
      ruclips.net/video/upEebOfp-AM/видео.html
      ruclips.net/video/nWZVvdg0kZs/видео.html
      .٨..

  • @microscope6452
    @microscope6452 3 года назад +2

    جميل ورائع ومبدع دائماً في جميع شرح الدورات أكثر من رائع اشكرك على جهودك ونتمنى لك التوفيق بارك الله فيك ❤️👍❤️👏👏👏❤️👍❤️

  • @AbdelkaderSharif
    @AbdelkaderSharif 2 года назад +1

    مبدع 💚

  • @boushraenjam6966
    @boushraenjam6966 Год назад +1

    عنجد شكرا لهلا كلشي عم بفهمو 😊

  • @safir9506
    @safir9506 Год назад +1

    شكرا لكم

  • @الحربالعالميةالثالثة-د4ط

    سلام يا قلب اخوك تحياتي لك اتمنا تسوي الفديوهات القادمة بجودات بعدت خيارت تناسب الانترنت الضعيف والمتوسط

    • @CoderShiyar
      @CoderShiyar  Год назад

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

  • @bahaaaldein5723
    @bahaaaldein5723 3 года назад +1

    شكرا جدا جدا ❤️❤️❤️
    يا أفضل مبرمج في العالم

  • @حسنهاديشاهر
    @حسنهاديشاهر 3 года назад +1

    راقيييي

  • @rawadshaikh
    @rawadshaikh 3 года назад +1

    الله يعطيك العافية

  • @aliabdulredha202
    @aliabdulredha202 Год назад +2

    good

  • @somodz1335
    @somodz1335 3 года назад +2

    لله يعطيك
    -صحة
    -راحة
    -يثبتك
    -يطول عمرك
    -الي تحبها حبيبي

  • @ahmadmuslem4156
    @ahmadmuslem4156 3 года назад +2

    هل يمكنني الحصول على ملف pdf لهذا الدرس ؟؟؟؟؟؟

    • @CoderShiyar
      @CoderShiyar  3 года назад +1

      text = "Learn Python with Shiyar "
      print(len(text))
      # Method Description
      # replace() تُرجع النص حيث يتم استبدال قيمة محددة بقيمة محددة
      # len() يقوم بإعادة طول النص المحدد
      # swapcase() حالات المقايضة ، تصبح الأحرف الصغيرة كبيرة والعكس صحيح
      # title() تحويل الحرف الأول من كل كلمة إلى أحرف كبيرة
      # capitalize() تحويل اول حرف إلى حرف كبير
      # upper() يحول النص إلى أحرف كبيرة
      # casefold() تحويل نص إلى احرف صغيرة
      # lower() يحول سلسلة إلى أحرف صغيرة
      # count() إعادة عدد مرات مكررة جزء نص الذي تحدده في نص الذي تحدده للبحث بها
      # endswith() للتحقق ان كان النص ينتهي بجزء نص الذي تحدده او لا
      # startswith() إرجاع صحيح إذا بدأت النص بالقيمة المحددة
      # find() يبحث في النص عن قيمة محددة ويعيد الموضع الذي تم العثور عليه فيه
      # index() يبحث في النص عن قيمة محددة ويعيد الموضع الذي تم العثور عليه فيه
      # join() Joins the elements of an iterable to the end of the string
      # rfind() يبحث في النص عن قيمة محددة ويعيد الموضع الأخير حيث تم العثور عليه
      # rindex() يبحث في النص عن قيمة محددة ويعيد الموضع الأخير حيث تم العثور عليه
      # strip() تُرجع نسخة مقتطعة من النص
      # lstrip() تُرجع نسخة مقطوعة إلى اليسار من النص
      # rstrip() تُرجع نسخة مقطوعة إلى اليمين من النص
      # Method Description
      # capitalize() Converts the first character to upper case
      # casefold() Converts string into lower case
      # center() Returns a centered string
      # count() Returns the number of times a specified value occurs in a string
      # encode() Returns an encoded version of the string
      # endswith() Returns true if the string ends with the specified value
      # expandtabs() Sets the tab size of the string
      # find() Searches the string for a specified value and returns the position of where it was found
      # format() Formats specified values in a string
      # format_map() Formats specified values in a string
      # index() Searches the string for a specified value and returns the position of where it was found
      # join() Joins the elements of an iterable to the end of the string
      # ljust() Returns a left justified version of the string
      # lower() Converts a string into lower case
      # lstrip() Returns a left trim version of the string
      # maketrans() Returns a translation table to be used in translations
      # partition() Returns a tuple where the string is parted into three parts
      # replace() Returns a string where a specified value is replaced with a specified value
      # rfind() Searches the string for a specified value and returns the last position of where it was found
      # rindex() Searches the string for a specified value and returns the last position of where it was found
      # rjust() Returns a right justified version of the string
      # rpartition() Returns a tuple where the string is parted into three parts
      # rsplit() Splits the string at the specified separator, and returns a list
      # rstrip() Returns a right trim version of the string
      # split() Splits the string at the specified separator, and returns a list
      # splitlines() Splits the string at line breaks and returns a list
      # startswith() Returns true if the string starts with the specified value
      # strip() Returns a trimmed version of the string
      # swapcase() Swaps cases, lower case becomes upper case and vice versa
      # title() Converts the first character of each word to upper case
      # translate() Returns a translated string
      # upper() Converts a string into upper case
      # zfill() Fills the string with a specified number of 0 values at the beginning

  • @ArabPixel
    @ArabPixel 3 года назад +1

    استاذ انت كفووو ❤️❤️
    كيف اقدر اساعدك وأخفف عنك الحمل 🙃

    • @CoderShiyar
      @CoderShiyar  3 года назад

      😊✌🌼
      انشالله بالمستقبل بس يخف ضغوطات عني ، بتواصل معكم بمنشور جديد بخصوص ذلك.

    • @fatimaamer1009
      @fatimaamer1009 3 года назад +1

      فعلااا،،،كفوووو😊

  • @sakliadem6784
    @sakliadem6784 3 года назад

    sir , try to add your academy to Linkedin , because we can't found it when adding the certificate

    • @CoderShiyar
      @CoderShiyar  3 года назад +1

      Make me Remember after 2 weeks , to see what I can do

  • @AdamAdam-jt6fy
    @AdamAdam-jt6fy 2 года назад

    شكرا اخي على الشرح القيم الجميل ، انا بادرس الماستر واول مرة ادري البايثون في الجامعة لكن احد صعوبة في فهم دروس متوسطة او متقدمة مثلا def return , def main, وغيرهم المرجو مساعدة اذا ممكن نتواصل على الاميل
    ادرس بالولايات المتحدة الامريكيةًمستوىً ماستر
    شكرا

  • @fatimaamer1009
    @fatimaamer1009 3 года назад +1

    😉✊

  • @الظلامدانتي
    @الظلامدانتي 3 года назад