String Methods in Python | Python Tutorial - Day #13

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

Комментарии • 1,2 тыс.

  • @CodeWithHarry
    @CodeWithHarry  2 года назад +161

    Instagram (for those who want to mention, I will try to mention everyone back): instagram.com/codewithharry/

  • @sohailnawaz186
    @sohailnawaz186 Год назад +518

    1. strings are immutable.
    2. any method on string takes a copy of the object.
    3.string.upper will convert the string to an upper case
    4.string.lower will convert the string to lower case
    5. string.rstrip("character") will strip the trailing characters of string
    6.string.replace("character/alphabets", new character/alphabets") will replace the existing specified alphabets in string with new ones
    7. string.split splits the string at the given alphabet and returns a list of items
    8.string.capitalize capitalizes the first character of the word and turns rest all the characters to lower case
    9.string.center center aligns the string by adding the number of spaces mentioned in parenthesis
    10. string.count counts the total number of a particular set of characters in a string
    11. string.endswith checks whether a string ends with the specific characters
    12.string.find finds the first occurrence of a given value and return the index value of the position of that occurrence
    13.string.index finds the occurrence of a given value and returns the index value of the position however, if it is unable to find it will give an error causing the program to exit
    14.string.isalnum checks to find if string is alphanumeric and returns true or false
    15.string.isalpha checks if there are any numbers in the string
    16.string.islower checks if there are only lower aphabets in the string
    17. string.isprintable checks if all the characters are printable in the string(non printable characters e.g
    )
    18 string.isspace checks if any space bar has been used in the string
    19.string.istitle The istitile() returns True only if the first letter of each word of the string is capitalized, else 20. string.isupper checks if all characters are uppercase in a string
    21. string.startswith checks if a string starts with a given value
    22. string.swapcase convert uppercase to lowercase and vice versa in a string
    23.string.title converts first character of all the words in the sentence to capital

    • @programmershourya
      @programmershourya Год назад +12

      Thnks v.much

    • @Informize
      @Informize Год назад +13

      Time kaha se mila

    • @rajmadheshiya8340
      @rajmadheshiya8340 Год назад +4

      Thankyou very much brother , I was making the notes of all lectures . And this helped me a lot .

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

      does the replace method change original string as harry said strings are immutable

    • @sohailnawaz1811
      @sohailnawaz1811 Год назад +14

      @@pinkijha5320 No. it creates a new copy of the object with the replaced words.Cheers

  • @HashimKhan-mt6pp
    @HashimKhan-mt6pp 2 года назад +227

    Ready with Harry bhai.... For day 13
    It is the first time when I stood constant with any series on youtube or Netflix.... Salute to Harry bhai...

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

      bro same line ko copy krny ka shortcut kya ha

    • @shivamawasthi765
      @shivamawasthi765 2 года назад +4

      @@lenovopc9777 shift + alt + down key

    • @PROGRAMMER_CODER
      @PROGRAMMER_CODER 2 года назад

      @@shivamawasthi765 ctrl+d

    • @Kumar-he7ey
      @Kumar-he7ey Год назад +1

      @@lenovopc9777 for copy= ctrl+c and for paste=ctrl+v

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

      ctrl+d or alt+shift+down key

  • @CodeWithHarry
    @CodeWithHarry  Год назад +18

    Code Backup Repository: github.com/CodeWithHarry/100-days-of-code-youtube

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

      sir is this also use in hacking plz plz tell

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

      you forgot () in strip code here the right code , i hope this will help you
      wrong : print(str2.strip)
      right : print(str2.strip())
      #HarryBhai #codewithharry @CodeWithHarry

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

      Harry bhaiyya aap ka python wala T-sirt kaha se purchase kiya hai please batado

    • @chandraprabhanagia7787
      @chandraprabhanagia7787 7 дней назад

      i am using it on replit but it asking fir card details or payment for fork ?

  • @tinkeshnikhare4028
    @tinkeshnikhare4028 2 года назад +108

    Very best channels for study all programming langauge

    • @swapneel9276
      @swapneel9276 2 года назад +7

      English Sikh le

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

      @@swapneel9276 🤣😂😂🤣😂

    • @yesdaddy7220
      @yesdaddy7220 2 года назад +17

      @@swapneel9276 bhai ko confuse mat karo, python language ke baad English language bhi seekh lega🗿

    • @ff_hr
      @ff_hr Год назад +7

      @@swapneel9276" Channels = channel / platform " ," for = to " , "study= learn", " All = any (is best ) " , " language = languages"

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

      ​@@ff_hrbhai kya kar rha hai ,padhle

  • @mohammadhuzaifaansari9115
    @mohammadhuzaifaansari9115 6 месяцев назад +48

    Mobile phone me coding karne walo ke jazbe ko dil se salam. ❤️‍🔥🤝 don't give up keep trying

    • @RapidFireGaming8
      @RapidFireGaming8 6 месяцев назад +3

      Thank you❤ radhe radhe❤

    • @Rimm6767
      @Rimm6767 3 месяца назад +1

      Coding with mobile🥵

  • @Ayesha_01257
    @Ayesha_01257 5 месяцев назад +4

    Koi itni mehnat kaisay kr skta hai aur wo bhi itni honesty k sath😇...Kamaal hai..Too much Impressive😍

  • @bhau1843
    @bhau1843 Год назад +40

    1-- upper()
    2-- lower()
    3-- rstrip()
    4-- replace("find","replace")
    5-- split (" ")
    6-- capitalize()
    7-- center()
    8-- count()
    9-- endswith()
    10-- find()
    11-- index()
    12-- isalnum()
    13-- isalpha()
    14-- islower()
    15-- isprintable()
    16-- isspace()
    17-- istitle()
    18--startswith()
    19-- swapcase()
    20-- title()

    • @Sibivlogs99
      @Sibivlogs99 7 месяцев назад

      Hey bro
      Can you asked me that how (find) and (index) work in python

    • @shubhamharale16
      @shubhamharale16 6 месяцев назад +1

      @@Sibivlogs99 I think in python find will return a bool value where a particular given element is present on the another hand index will return the particular index in which element is present

    • @shubhamaswal7481
      @shubhamaswal7481 6 месяцев назад +1

      bro there is another string method name lstrip()
      which strip the string from left side

  • @yashwantsingh6209
    @yashwantsingh6209 2 года назад +56

    'rstrip' function strips the character from right side and there is another command 'lstrips' which strips the character from left side and 'strip' function strips the character from anyside of the string

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

      woah thankyou so much

    • @abhiyanshsinghrana-s2n
      @abhiyanshsinghrana-s2n 11 месяцев назад +1

      bhai lekin kewal strip function lgane se eclamation mark na to right me lagega n to left me

  • @dwarakeshsathyarao
    @dwarakeshsathyarao Год назад +5

    Man hats off, u r teaching for free and in a good quality too

  • @FaceSenseAustralia
    @FaceSenseAustralia Год назад +34

    Here are few more string methods which may be useful to someone:
    1. casefold(): similar to lower() but more aggressive and strong.
    2. encode(): return a encoded version of a string.
    3. format(): format specific values inside the string.

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

    Bahut hi khubsoorat.. tarike se course banaya hai sab kuchh top notch hai

  • @-PShreyanshKarna
    @-PShreyanshKarna Год назад +40

    Note: If you are going though sentences , it counts space too. (for string slicing)

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

      that is why i was confused in the previous exercise

    • @ronitlakra2053
      @ronitlakra2053 6 месяцев назад

      thanks bro exactly what I want to hear thanks

  • @TECHWIZARD137
    @TECHWIZARD137 2 года назад +30

    08:41
    Bro you made things complex as you just printed the length of str1.center(50)
    center function centers the string from both ends of the string
    For instance:
    You should give the example like this:
    name = "Harry"
    print(name.center(9), end=",") # you can use any symbol instead of comma
    This will be a good and unambiguous example.
    This will show that 9-5=4 and 2 spaces will be given to start of the string and 2 at last and at the end of all comma will be printed.
    I hope you will consider my suggestion.
    I said it because my 2 friends are also watching the playlist and their concept was not cleared about center function.

    • @SS-ds9lg
      @SS-ds9lg Год назад

      name = "Tech Tech Wizard"
      print(name.split("T"))
      Answer:
      ['', 'ech ', 'ech Wizard']
      isme single quotes kyu aa rahi 2 start me?

    • @SS-ds9lg
      @SS-ds9lg Год назад

      one more question-
      name = "Harry"
      print(name.center(9), end=",")
      isme agar mujhe dekhna hai ki index [2] pe konsa character hai to kya code hoga, index access ka general code ye hota hai ki print(string[2]), but yahan string ki jagah kya likhna hoga agar ye code use kru to

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

      @@SS-ds9lg string~name

    • @pratikk7075
      @pratikk7075 9 месяцев назад

      I was going through comments to see about the center. Thank you very much for this one.

    • @faizanmalik7411
      @faizanmalik7411 5 месяцев назад

      @@SS-ds9lg jis variable ka index find krna uska name enter kro gy , is example main, print(name[2])

  • @dankrevvo
    @dankrevvo Год назад +12

    I have Python in my syllabus,I'm in 8th grade,I discovered this playlist a while ago ,at first i decided to learn as much in my syllabus but after watching a few tutorials,I fell in love with Python and the teaching skills of CodeWithHarry sir and I am eager to learn more and complete this playlist.Thank you so much sir❤❤

  • @ayushsahu632
    @ayushsahu632 2 года назад

    jo bhi doubt aate hai wo aap apne videos mein include kar lete hun..thanks a lot sir

  • @Vaibhav-or3nc
    @Vaibhav-or3nc 3 месяца назад +10

    who is learning nowdays🤩

  • @FizaFakher
    @FizaFakher Месяц назад

    free code camp se smja man ebut clear nhe ho paya but harry bhai kamal ha awesome smj arhe ha or mza bhe end ka araha ha dil krta ha foran next next kro

  • @fatimaiqra2169
    @fatimaiqra2169 Год назад +13

    I am not able to find words to thank you for your kind efforts in teaching us very deeply .....thank u so much....jazak Allah😊

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

      Masha allah, May Allah bless u with hidayah and peaceful life in this world and also with ..."(Jannatul Ferdous)"...in the Akhirah Ameen

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

    Mind blowing explanation of each and every points sir.. Teaching technique is really a best and understandable..

  • @thomasshelby4946
    @thomasshelby4946 Год назад +7

    you are a brillient youtuber bro i feel like my own brother teaching me how to code.
    love your content......🥰🥰🥰🥰

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

    Thank you Harry Bhai I was very confuse before this video on how i can get access to you repels but from now i can easily access your repels.

  • @vivelafootball4835
    @vivelafootball4835 2 года назад +11

    Harry bhaiya, I am late but speeding up and learning fast with your great explaination...we are lucky to have a teacher like you...Thank you😃

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

    #HarryBhai 😎😎 A bhi khatam hogeya bhai,,, Main kitana genius huan dekha Apane🤣🤣

  • @WaizBilal-fz3bz
    @WaizBilal-fz3bz 2 года назад +3

    Thank You sir for this course.

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

    Mja aa gya ch-#12 tkk kuch khas smjh nhi aaya tha lekin ye chapter/session-#13 ache se smjh aaya.

  • @T.Akshay_Pratap_Singh
    @T.Akshay_Pratap_Singh Год назад +17

    # converting string into uppercase note: strings are immutable
    a = "Harry"
    print(len(a))
    print(a.upper())
    print(a.lower())
    # one more example of upper() and lower() functions
    str1 = "AbcDEfghIJ"
    print(str1.upper())
    print(str1.lower())
    # using strip() function we can remove white spaces before and after string
    str2 = " Silver Spoon "
    print(str2.strip())
    # rstrip() function used to remove any trailing characters
    str3 = "Hello !!!"
    print(str3.rstrip("!"))
    # replace() method using which we can replace all occurences of string with another string
    str2 = "Silver Spoon"
    print(str2.replace("Sp", "m"))
    # split() method splits the given string at the specified instance and returns the separated strings as list items.
    str2 = "Silver Spoon"
    print(str2.split(" "))
    # capitalize() method is used to turn first character of string into uppercase and rest into lower case
    str1 = "hello"
    capStr1 = str1.capitalize()
    print(capStr1)
    str2 = "hello World"
    capStr2 = str2.capitalize()
    print(capStr2)
    # using center() method to align the string to the center
    str1 = "Welcome to the Console!!!"
    print(str1.center(50))
    # another example of center() method
    str1 = "Welcome to the Console!!!"
    print(str1.center(50, "."))
    # count() method returns the number of times the given value has occured within the given string
    str2 = "Abracadabra"
    countStr = str2.count("a")
    print(countStr)
    # endswith() method checks if the string ends with a given value. If yes then return True, else return False.
    str1 = "Welcome to the Console !!!"
    print(str1.endswith("Console !!!"))
    # another example of endswith() checking for a value in between the string by providing start and end index positions.
    print(str1.endswith("to", 4, 10))
    # find() method searches for the first occurrence of the given value and returns the index where it is present. If given value is absent from the string then return -1.
    str1 = "He's name is Dan. He is an honest man."
    print(str1.find("is"))
    print(str1.find("Daniel"))
    # index() method searches for the first occurrence of the given value and returns the index where it is present. If given value is absent from the string then raise an exception.
    str1 = "He's name is Dan. Dan is an honest man."
    print(str1.index("Dan"))
    # print(str1.index("Daniel")) # this will show a value error
    # isalnum() method returns True only if the entire string only consists of A-Z, a-z, 0-9. If any other characters or punctuations are present, then it returns false.
    str1 = "WelcometoTheConsole"
    print(str1.isalnum())
    # isalpha() method returns True only if the entire string only consists of A-Z, a-z. If any other characters or punctuations or numbers(0-9) are present, then it returns false.
    str1 = "Welcome"
    print(str1.isalpha())
    # islower() method returns True if all the characters in the string are lower case, else it returns false.
    str1 = "hello world"
    print(str1.islower())
    # isprintable() method returns True if all the values within given string are printable, if not, then return False.
    str1 = "We wish you a Merry Christmas"
    print(str1.isprintable())
    str1 = "We wish you a Merry Christmas
    "
    print(str1.isprintable()) # this will return False
    # isspace() method returns True only and only if the string contains white spaces, else returns False.
    str1 = " " # using spacebar
    print(str1.isspace())
    str2 = " " # using Tab
    print(str1.isspace())
    # istitle() method returns True only if the first letter of each word of the string is capitalized, else it returns False
    str1 = "World Health Organization"
    print(str1.istitle())
    str2 = "To kill a Mocking bird"
    print(str2.istitle())
    # isupper() method returns Ture if all the characters in the string are upper case, else it returns False.
    str1 = "WORLD HEALTH ORGANIZATION"
    print(str1.isupper())
    # startswith() method checks if the string starts with a given value. If yes then return True, else return False.
    str1 = "Python is a Interpreted Language"
    print(str1.startswith("Python"))
    # swapcase() method changes the character casing of the string. Upper case are converted to lower case and lower case to upper case.
    str1 = "Python is a Interpreted Language"
    print(str1.swapcase())
    # title() method capitalizes first letter of each word within the string
    str1 = "He's name is Dan. Dan is an honest man"
    print(str1.title())

  • @officialstark535
    @officialstark535 8 дней назад +1

    4:04 if we want to remove the ! form left side " that is in starting " we will use lstrip()

  • @debasishbesra2901
    @debasishbesra2901 Год назад +5

    Day3 of #100DaysOfCode. Today in this video13, I learned about various string methods in Python, such as upper(), lower(), strip(), replace(), split(), and many others. These methods will help me manipulate strings effectively, such as changing character casing, aligning text, counting occurrences, and checking specific conditions within strings.
    Thank You Harry Bhaiya.

  • @ghufranbashir
    @ghufranbashir Месяц назад

    HELLO HARRY BHAI I AM FROM PAKISTAN YOU ARE TEACHING VERY GOOD STYLE I AM VERY VERY BEIGGNERS STUDENTS IN PYTHON . THANKS FOR TEACHING

  • @f_a_d_y8806
    @f_a_d_y8806 2 года назад +12

    better than money hiest series...😂😂
    #day-13
    vikash dhakad
    present sir

  • @CraftCrazeCoasdfghjkl
    @CraftCrazeCoasdfghjkl 3 месяца назад +1

    a = input("Enter your first Number: ")
    x=input ("Enter your operator: ")
    b=input ("Enter your second Number: ")
    if x== "+":print(int(a)+(int(b)))
    if x== "-":print(int(a)-(int(b)))
    if x== "*":print(int(a)*(int(b)))
    if x== "/":print(int(a)/(int(b)))

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

    Your way of teaching is just awesome

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

    Bhai ak number notes or satting hai 👌👌❤

  • @vivek29925
    @vivek29925 Год назад +6

    Thank you so much Harry Bro for the knowledge you are sharing❤

  • @RahulVerma_98
    @RahulVerma_98 2 года назад

    thanks harry bhai for course. mjja to bhut aa rh hai bhai.

  • @bibek-bhujel
    @bibek-bhujel Год назад +8

    studied java in previous sem and got to this, all the methods are quite easier to me. Its fun. I had tried to learn from this series previously too, but I got too confused, but coming after learning java, python feels a little easier as of day 13

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

    ভাই 💥💥💥💥
    সেরা ব্রাদার❤
    Love you Harry bro❣
    From Bangladesh💞

  • @kunalgurav8194
    @kunalgurav8194 2 года назад +5

    str = "This is day 12 of thie series was completed!"
    str = str.replace("12", "13")
    print(str)

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

    bhai bahut mazza aa raha hai........................................

  • @badalsahoo3902
    @badalsahoo3902 2 года назад +5

    mei to , harry bhai like karne ke liya aata hun , aur like kar ke chala jata hun, apke channel se java sikh raha hun ab, aur mera excitement badh raha he, apke channel se me sab sikhunga future mein.🙂👍🏻👍🏻👍🏻

  • @Manish_Sahu
    @Manish_Sahu 2 года назад

    badhiya setup hai bhai. very nice

  • @GAMINGWITHPOLAR922
    @GAMINGWITHPOLAR922 Год назад +94

    Harry me to yeh mobile pet kar Raha hu 😢

    • @SupreemeSteevee
      @SupreemeSteevee 10 месяцев назад +26

      Same. Don't worry just don't stop

    • @ahsanraza7199
      @ahsanraza7199 9 месяцев назад +8

      ​@@SupreemeSteeveekitny lectures tak mobile mein kr skty hain or ap kahan tak pohanchy o

    • @LegendAce-i1w
      @LegendAce-i1w 9 месяцев назад +8

      Me be Mobile ma karraha hu but no problem 😊

    • @SupreemeSteevee
      @SupreemeSteevee 9 месяцев назад

      @@ahsanraza7199 complete

    • @Nishan-p7r
      @Nishan-p7r 9 месяцев назад +1

      ​@@ahsanraza7199u can do everything in a mobile

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

    Great teaching done by you. Full hats off to you

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

    ♥♥♥♥it is the ** first time when I stood constant with any series on youtube Salute to Harry bhai...
    Thanks harry bahi Thanks ♥♥♥♥

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

      bro "constant" nahi 'consistence" hota hai

  • @kutapoiu2290
    @kutapoiu2290 5 месяцев назад +2

    00:02 Python string methods include operations like converting to uppercase and lowercase, finding string length, and understanding string immutability.
    01:56 String methods in Python can change the case and strip trailing characters
    04:03 String methods in Python include strip, replace, and split.
    06:04 Capitalize the first letter of a string
    07:57 Python's string methods like center() and count() offer useful functionalities for manipulating and analyzing strings.
    09:56 String methods like ends with and find are important for string manipulation.
    12:01 String methods in Python provide functionality for searching and manipulating strings.
    14:07 String methods in Python for checking characters and punctuation
    16:05 String methods in Python can determine if characters are printable or whitespace.
    18:04 String methods in Python include start, swap case, and title. They manipulate strings in various ways.
    19:42 Using Continuity camera to connect iPhone and MacBook
    21:11 The video discusses improving mic setup and desk view
    \

  • @pullock-byjus1163
    @pullock-byjus1163 2 года назад +10

    Thank you very much Harry Bhai for making us learn Python for free and I saw that you were recording the video at midnight in some videos

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

      ​ how to run another file other than main.py in a repl

  • @arpankarmakar16
    @arpankarmakar16 2 года назад +15

    Present on #Day13 (11-Dec-22). Harry bhai you're really taking this course on a next level! Your older tutorials didn't contain so many methods. Thank you for your efforts.

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

      Hey buddy. Did you finish that course??

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

      @@aadisingh8742 yeah but now heavily burdened due to studies

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

      @@arpankarmakar16 what are you doing currently

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

      @@arpankarmakar16 did you get any benigit from that course. ?

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

      @@aadisingh8742 yeah learnt a lot of new things from that course and also made a few custom projects, but nowadays I've to focus on studies more because of my poor grades

  • @Himanshu-rb5mj
    @Himanshu-rb5mj 10 месяцев назад

    thnks for your efforts for making this useful videos watching python videos here regularly .i am doing mca from ip .and again thnks for your hrd work dude

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

    Harry Bhai is an inspiration ❤

  • @victorb22622
    @victorb22622 8 месяцев назад

    15:13 हैरी को मजा आ गया तीन व्यूज एक स्क्रीन में करके ।कभी सोचा होगा की जो लोग मोबाइल में देखते होंगे इनका क्या हाल होगा ,ज्यादातर मोबाइल में ही देखते हैं।अब तो रिप्लिट भी मोबाइल में आ गया

  • @HassanKhan-jl5pu
    @HassanKhan-jl5pu 4 месяца назад +4

    Hr string ko str1 k equal rkha tha mean hr string ka name same tha phir b error ni aaya q

    • @code_with_sharjeel
      @code_with_sharjeel 3 месяца назад

      pyhton mein ovverride kr sKTE hai variables ko is lie nhi aya

  • @Fineartdrawings
    @Fineartdrawings 7 месяцев назад +1

    thanku harry sir for your important and learning books

  • @mdhyderalikhan8725
    @mdhyderalikhan8725 Год назад +9

    "Harry">>>>>>>>>>>>>>"Hello World" 🤣😂

  • @Vivek-h1p
    @Vivek-h1p 2 месяца назад

    this is day 2 of my python journey and today i completed 13 days of content in this serise...

  • @prensudangol1547
    @prensudangol1547 7 месяцев назад +4

    100 days of python series >> any netflix series

  • @code_with_sharjeel
    @code_with_sharjeel 3 месяца назад

    Present harry bhai.. 3rd day of your course and on lec 13

  • @Kuch_Bhi-lets_explore_it
    @Kuch_Bhi-lets_explore_it 2 года назад +3

    Amazing Video learnt alott and enjoy alott 🔥🔥

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

    bro me apki sari vedio dekh ta hu muje gift chaiye apki tarfse bhai 😁😁🤣🤣😍😍 Day #13

  • @muhammadtaimoor9583
    @muhammadtaimoor9583 11 месяцев назад +3

    Alhamdullilah in day 13 in one day.Insha Allah I will finish it in one week

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

    Bhaiya blockchain ke uper series ka intezar hai
    Love youuuuuuuuuuuu❤❤❤❤

  • @manisharya5860
    @manisharya5860 5 месяцев назад +21

    Kon kon 2024 mein start karra hai

  • @jaysukhhadiyal848
    @jaysukhhadiyal848 2 года назад

    jordar courese ho raha he harry bhai

  • @Fitness_Freak_Aryan_Singh
    @Fitness_Freak_Aryan_Singh 2 месяца назад +3

    day 13 at the day1 only

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

    LOVE YOU HARRY BHAI❤

  • @Just_shayrii
    @Just_shayrii 2 года назад +2

    It's so good Harry bhai ❤️❤️❤️❤️❤️💫I try to make my self as you

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

    bhai is video me aap bht jyada fast ho gye aur kai chije jaldbazi me bata diya bina better explanation ke
    i m beginer nd is video me lgbhag sbkuch sir ke upar se chala gya mere

  • @doniv2104
    @doniv2104 4 месяца назад

    center method will add the blank spaces on both side of string
    str1 = "Welcome to the Console!!!"
    print(len(str1))
    print(len(str1.center(50)))
    o=str1.center(50)
    print("start:",o[0:12])
    print("End :",o[37:50])
    print(o[12:38])
    print(str1.center(50))
    Output:
    25
    50
    start:
    End :
    Welcome to the Console!!!
    Welcome to the Console!!!

  • @BadBxZUBON
    @BadBxZUBON Месяц назад

    i am also using macbook m2 and it is very good for coding and editing 😍

  • @BKYADAV-zm7yv
    @BKYADAV-zm7yv Месяц назад

    waah how video editing is working nice to hear that one line

  • @prathameshdhole1522
    @prathameshdhole1522 2 года назад

    Harry bhai ek no sabse best

  • @-ECE-KUMARSHANU
    @-ECE-KUMARSHANU Год назад

    you are the best teacher to whome every one can conect

  • @coding---
    @coding--- 2 года назад +1

    Thank you everything bhaiya dil se

  • @junaidtanveer7191
    @junaidtanveer7191 2 года назад

    Nice harry Bhai kamal ka lecture han😍😍

  • @TahirMushtaq.official
    @TahirMushtaq.official Год назад +1

    great yrr fork wala kaam bohtt kaam aya

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

    Harry Bhai...u r the best... Thankyou

  • @oner1607
    @oner1607 4 месяца назад +1

    love you bro😇😇

  • @TahirMushtaq.official
    @TahirMushtaq.official Год назад

    Bohttt kamal ka setup h bruh❤

  • @mayankkeshari6737
    @mayankkeshari6737 2 года назад

    koi rahe na rahe
    i will be till end of 100 days
    salute to your efforts

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

    very interting 👍👍👍👍👍👍👍👍👍

  • @mr.pianist
    @mr.pianist 2 года назад

    maza aaya harry bhai aapke saath thodi unofficial bate karke.

  • @NavneetSingh-hv9wi
    @NavneetSingh-hv9wi 6 месяцев назад +1

    Intresting Series😍

  • @anonymous____________________4
    @anonymous____________________4 2 года назад

    Pranam bhrata 🙏 apka bahutt baht dhanyawad 😄🧡😇

  • @takshbhatt147
    @takshbhatt147 Месяц назад +1

    One correction is that capitalize method converts all other characters to lowercase, regardless of whether the first character was initially uppercase or not.

  • @shubhamvishwakarma597
    @shubhamvishwakarma597 2 года назад

    ha harry bhai maza to bahut a rha h😁😁

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

    Bhiya How much you are doing for Us that is such so caring❤❤We love you and your work.

  • @sabirgaming3092
    @sabirgaming3092 2 года назад

    Thanku harry bhai *# Day 13* ke liye

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

    Please explain that will make u unique and everyone also like

  • @AnEngineerHuman
    @AnEngineerHuman 2 года назад

    Day-13 done
    love you harry bhai❣❣

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

    your perfect bro i am practicing everything
    🤩🤩🤑🤑

  • @user-dz6zd9zk2f
    @user-dz6zd9zk2f Год назад

    Harry bhai bhot bdiya video h, Bss agr in methods ki time complexity v bata dete to maza ajata

  • @LOFIGOOD143
    @LOFIGOOD143 2 года назад

    harry sir appka setup to garda ha jii😍

  • @Ejwj-6
    @Ejwj-6 Год назад +1

    Love u bro❤

  • @waseemshah-by7jx
    @waseemshah-by7jx 7 месяцев назад

    thankyou sooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo much sir for upload this python tutorial love u a lot

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

    bhaiya using lstrip we can also remove starting exclamatory mark
    and using strip we can remove both side

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

    very helpful video sir

  • @tejas4054
    @tejas4054 2 года назад

    12:47 python insaan nhi naa ki snake bhi nhi hai that line is 🔥

  • @amiraziz8007
    @amiraziz8007 2 года назад

    Hello sir, Es video me to aap ne 2x speed se padhaya.🥰
    Anyway a lot of love from Peshawar , Pakistan.

  • @RAJKUMAR-vz3zn
    @RAJKUMAR-vz3zn Год назад

    Ossum teacher in this whole world....

  • @arnavdevgan6881
    @arnavdevgan6881 3 месяца назад +1

    7:56 Does python only support US English, because when I tried centre() command it showed error while center() was working fine?