Lecture 2 : Strings & Conditional Statements | Python Full Course

Поділитися
Вставка
  • Опубліковано 4 жов 2024
  • This lecture was made with a lot of love❤️
    Notes : drive.google.c...
    ✨ Instagram : / shradhakhapra
    ✨ LinkedIn : / shradha-khapra

КОМЕНТАРІ • 1 тис.

  • @bsafridi
    @bsafridi 7 місяців тому +120

    One word for this girl *AWESOME*
    😢 Unfortunately, We had some weirdos in schools and college who really work hard to ruin our career, now gradually things making sense, thank you for your clean and clear method of teaching. 🎉❤

    • @teclues3893
      @teclues3893 3 місяці тому +2

      are those bullies?

    • @OPPerson-y6p
      @OPPerson-y6p Місяць тому

      @@teclues3893 he meant bad teachers

    • @user-mouli1897
      @user-mouli1897 Місяць тому

      ​@@teclues3893I don't think so I think he is talking about teacher

  • @Ayaan_khan21
    @Ayaan_khan21 7 місяців тому +100

    for convenience use : windows key + ->(arrow key) to split the windows into 2 tabs so that you can code and watch tutorial simultaneously.

    • @edlmns_135
      @edlmns_135 6 місяців тому +4

      thank u

    • @anandfawde3079
      @anandfawde3079 6 місяців тому +1

      thanks bro

    • @SasukeUchih91
      @SasukeUchih91 5 місяців тому +2

      ye koi kehne wali baat hai ye toh aata hai

    • @Ayaan_khan21
      @Ayaan_khan21 5 місяців тому +6

      Good for those who discovered it for the first time like me

    • @subhradeepkarmakar8500
      @subhradeepkarmakar8500 4 місяці тому +1

      Is these 9 lectures are basic to high level? Or something more we have to learn?

  • @BilalNoor-df4dq
    @BilalNoor-df4dq 7 місяців тому +251

    Strings are a data type that stores a sequence of characters, and can be created in different ways.
    00:01
    Python uses double quotes and escape sequences for creating strings.
    02:06
    Concatenating and finding length of strings in Python
    06:09
    String manipulation in Python and understanding string length and indexing
    08:27
    Slicing in Python involves accessing parts of a string and is crucial for dealing with data in machine learning.
    13:02
    Explaining string indexing and slicing in Python
    15:03
    Backward counting is helpful for string manipulation
    18:50
    Understanding string functions, ends with
    20:47
    Learn about string replacement and find functions in Python
    24:35
    Count function in strings can be used to find the occurrences of a substring
    26:47
    Conditional statements are used to execute code based on specific conditions.
    30:36
    Using indentation and conditional statements in Python
    32:31
    Difference between 'if' and 'lf'
    36:27
    Using 'if' and 'else' statements in Python
    38:22
    Using conditional statements and logical operators to calculate grades.
    42:09
    Using conditional statements to determine grades based on student marks in Python
    44:17
    Even numbers are divisible by two with no remainder
    48:23
    Program to find the greatest value among three numbers
    50:31
    Understanding multiples and basic coding practice
    55:10
    Thanks me later 👍

    • @vedantkhandagale8004
      @vedantkhandagale8004 6 місяців тому +5

      You are a livesaver❤❤😊😅

    • @vishal1980able
      @vishal1980able 6 місяців тому +9

      thanks a lot but i read comments whn i ended the videoo

    • @ikrishi_
      @ikrishi_ 6 місяців тому

      ​@@vishal1980able Us bhai us

    • @ayushsharma5516
      @ayushsharma5516 5 місяців тому +2

      legend

    • @ravibukya4339
      @ravibukya4339 5 місяців тому

      ua-cam.com/video/Eyp36KUYC_g/v-deo.html

  • @Remix_Rush
    @Remix_Rush 8 місяців тому +239

    Ye language kis kis ka first language hai

  • @mechanicalninjagaming6515
    @mechanicalninjagaming6515 2 місяці тому +18

    a1=int(input("Enter 1st no . = "))
    a2=int(input("Enter 2nd no . = "))
    a3=int(input("Enter 3rd no . = "))
    a4=int(input("Enter 4th no . = "))
    if(a1>a2 and a1>a3 and a1>a4):
    print("1st no. is largest")
    elif(a2>a3 and a2>a4):
    print("2nd no. is largest")
    elif(a3>a4):
    print("3rd no. is largest")
    else:
    print("4th no. is largest")

    • @ADIATHASANRIYAD
      @ADIATHASANRIYAD 2 місяці тому +11

      num1 = int(input("Enter the first number: "))
      num2 = int(input("Enter the second number: "))
      num3 = int(input("Enter the third number: "))
      num4 = int(input("Enter the fourth number: "))
      # Use the max function
      greatest = max(num1, num2, num3, num4)
      print(f"The greatest number is", greatest)

    • @mechanicalninjagaming6515
      @mechanicalninjagaming6515 2 місяці тому +3

      @@ADIATHASANRIYAD THANK YOU FOR THE TIPS☺

    • @kingsubrowstatus
      @kingsubrowstatus Місяць тому

      ​@ADIATHASANRIYAD bhai is video me max btaya gya hai??? Ab aisa hai to me c++ me code likh deta hu

    • @terminatorgaming7426
      @terminatorgaming7426 13 днів тому

      @@ADIATHASANRIYAD thank you so much bro

  • @MiniRomance
    @MiniRomance 8 місяців тому +44

    Mam your way of teaching is so good and crystal clear.

    • @anandfawde3079
      @anandfawde3079 6 місяців тому +1

      I also thought the same😁😁

  • @masoumehamiri7186
    @masoumehamiri7186 8 місяців тому +34

    Thank you for making these series, while I was doing 1st one I wished I get the second lecture without breaking time and you made it true , You making it cup of a tea! thank you so much ❤❤

    • @ravibukya4339
      @ravibukya4339 5 місяців тому

      ua-cam.com/video/Eyp36KUYC_g/v-deo.html

  • @premsharma2595
    @premsharma2595 2 місяці тому +8

    00:01 Strings are a data type that stores a sequence of characters, and can be created in different ways.
    02:06 Python uses double quotes and escape sequences for creating strings.
    06:09 Concatenating and finding length of strings in Python
    08:27 String manipulation in Python and understanding string length and indexing
    13:02 Slicing in Python involves accessing parts of a string and is crucial for dealing with data in machine learning.
    15:03 Explaining string indexing and slicing in Python
    18:50 Backward counting is helpful for string manipulation
    20:47 Understanding string functions, ends with
    24:35 Learn about string replacement and find functions in Python
    26:47 Count function in strings can be used to find the occurrences of a substring
    30:36 Conditional statements are used to execute code based on specific conditions.
    32:31 Using indentation and conditional statements in Python
    36:27 Difference between 'if' and 'lf'
    38:22 Using 'if' and 'else' statements in Python
    42:09 Using conditional statements and logical operators to calculate grades.
    44:17 Using conditional statements to determine grades based on student marks in Python
    48:23 Even numbers are divisible by two with no remainder
    50:31 Program to find the greatest value among three numbers
    55:10 Understanding multiples and basic coding practice

  • @YeeJoon76
    @YeeJoon76 3 місяці тому +9

    colour = input("Write the traffic light colour :")
    if (colour == "Red"):
    print("stop")
    elif (colour == "Green"):
    print("Go")
    elif (colour == "Yellow"):
    print("Wait")

  • @ayushyadavone
    @ayushyadavone 8 місяців тому +195

    Like 👍🏻 those who want DSA with Python on Apna College 🔥

    • @parthsojitra9221
      @parthsojitra9221 7 місяців тому +7

      very great idea i am waiting for many month for dsa with python because on youtube no one teach dsa with python and i request all student who connected with apna college comment dsa with python

    • @Dorime1b
      @Dorime1b 4 місяці тому +4

      Dsa with py

    • @PrabhuVenkata-tm6bu
      @PrabhuVenkata-tm6bu 4 місяці тому

      @@parthsojitra9221 dsa with python

    • @Om-cn2sn
      @Om-cn2sn 3 місяці тому +3

      dsa with python

    • @RAMESHKUMAR-zj4zi
      @RAMESHKUMAR-zj4zi 2 місяці тому

      DSA with PYTHON ❤

  • @D6Ell
    @D6Ell Місяць тому +5

    Who is from September 2024 ❤ D2

  • @Muskanmotwani777
    @Muskanmotwani777 4 місяці тому +7

    shradha di you are the best teacher in the world , i am from non IT background , i am also a non science student but i understand concepts so well because you teach them so well .I am so grateful to you.
    Thank you so muchhhhhhh☺☺☺☺☺☺

  • @mdjahangirhossain6203
    @mdjahangirhossain6203 8 місяців тому +64

    Please complete the series mam
    You are the only teacher whose teaching I understand the most
    If you complete the series with project and all then its good otherwise please launch a course on apna college I am willing to buy it if I gets like Sigma batch

    • @Nikhil-kn1sm
      @Nikhil-kn1sm 5 місяців тому

      @rehankabir7601 lol😂

    • @seekhoaursikhao4046
      @seekhoaursikhao4046 5 місяців тому +1

      I have a request the amount of energy and effort you are putting on this videos to make it fruitful , it is really heart touching to the listeners, but the moment if you will make your channel commercialize again , those who not able to pay single rupee, their self confidence and trust on you will destroy. So just share your knowledge freely and spread it across the globe. Surly all blessings will come to you towards success. The ultimate truth is the viewers are already paying for internet amount to watch your video by hook or crook. Hope you understand the pain of the viewers.

    • @ravibukya4339
      @ravibukya4339 5 місяців тому

      ua-cam.com/video/Eyp36KUYC_g/v-deo.html

  • @titassamanta
    @titassamanta 8 місяців тому +11

    Awesome class. Shraddha didi's teaching is very easy to understand. Thank you so much ❤

  • @RationalBeliever01
    @RationalBeliever01 8 місяців тому +29

    Best Python Tutorial I have ever found on UA-cam.
    Thank you for making this beautiful and excellent tutorial with this much effort!!❤❤❤

  • @killerdestiny786
    @killerdestiny786 5 місяців тому +1

    Thanks for all your help. practice maximum out of 4 different number
    a = int(input("Enter First number"))
    b = int(input("Enter Second number"))
    c = int(input("Enter Third number"))
    d= int(input("Enter Forth number"))
    if a>=b and a>=c and a>=d:
    print("First number is Greatest: ", a)
    elif b>=c and b>=d:
    print("Second number is Greatest: ", b)
    elif c>=d:
    print("Third number is Greatest: ", c)
    else:
    print("Forth number is Greatest: ", d)

    • @JigyasuKalyan
      @JigyasuKalyan 5 місяців тому

      Yeah, I did the same but then i tried giving a three digit input such as a = 67, b = 79, c = 54, d = 525...but it got error after trying very much then i tried replacing three digit number with 2 digit and got it correct...and then realised that its just taking 2 digits from starting in larger digit numbers...if i would put 875 then coz 87 is greater than 79 it will output 875 :)

  • @mikeytoman4153
    @mikeytoman4153 7 місяців тому +3

    42.48 we do not need code mark

    • @mikeytoman4153
      @mikeytoman4153 7 місяців тому +1

      @Shradha Khapra Didi please check and tell me if i am right or wrong I am new!

  • @nocopyrightnatureeffect6313
    @nocopyrightnatureeffect6313 19 днів тому +2

    day 2 first half done

  • @Arslan-mm7cg
    @Arslan-mm7cg Місяць тому +3

    Excellent way of teaching. Love for your lectures. Very efficient and easy to understand.From Pakistan

  • @PrakherShukla-i7n
    @PrakherShukla-i7n 9 днів тому +1

    #finding of largest number
    a=int(input("first digit"))
    b=int(input("second digit"))
    c=int(input("third digit"))
    d=int(input("fourth digit"))
    if(a>b and a>c and a>d):
    print("greatest number is A",a)
    elif(b>c and b>d):
    print("greatest number is B",b)
    elif(c>d):
    print("greatest number is C",c)
    else:
    print("greatest number is D",d)

  • @KaramatHussain-pr5sm
    @KaramatHussain-pr5sm 8 місяців тому +7

    I have no words for your great efforts Shradha mam and Aman sir❤️ Thank you so much👍

  • @sanankhan7752
    @sanankhan7752 Місяць тому +2

    CODE DONE MAM::::::::::>>{
    a=int(input("enter first number:"))
    b=int(input("enter second number:"))
    c=int(input("enter third number:"))
    d=int(input("enter fourth number:"))
    if(a>=b and a>=c and a>=b):
    print("first is the largest",a)
    elif(b>=c and b>=d):
    print("second is largest",b)
    elif(c>=d):
    print("third is the largest",c)
    else:
    print("fourth is the largest",d)

  • @atifmalik8012
    @atifmalik8012 8 місяців тому +9

    H.w problem
    a = int(input("enter first number: "))
    b = int(input("enter second number:"))
    c = int(input("enter third number: "))
    d = int(input("enter fourth number: "))
    If(a>=b and a>=c and a>=d):
    Print("first number is largest" , a)
    elif(b>=c and b>=d):
    Print("second number is largest", b)
    elif(c>=d):
    Print("third number is largest", c)
    else:
    Print("fourth number is largest" , d)
    I think this is right 👍 53:45😅

  • @garengang
    @garengang 8 місяців тому +16

    Thank you so much I was curiously waiting for second lecture ❤❤

    • @ravibukya4339
      @ravibukya4339 5 місяців тому

      ua-cam.com/video/Eyp36KUYC_g/v-deo.html

  • @creativemantra5884
    @creativemantra5884 8 місяців тому +37

    a = int(input("input number : "))
    b = 2
    e = a % b
    if(e == 0):
    print("This is an Even number")
    else:
    print("this is an odd number")

    • @RanaZaid-n9z
      @RanaZaid-n9z 3 місяці тому +1

      Nice😊

    • @NsrinivasReddy-kt8js
      @NsrinivasReddy-kt8js 3 місяці тому +4

      We can simply write as
      a=int(input("enter a number "))
      If a%2==0:
      Print ("number is even")
      Else:
      Print(number is odd)
      😊

    • @spaceasphalt9510
      @spaceasphalt9510 2 місяці тому +1

      @@NsrinivasReddy-kt8js
      num = int(input("enter the number"))
      if(num % 2 == 0):
      print("EVEN")
      else:
      print("ODD")
      MINE IS MORE EZ
      🗿🗿

    • @tukannath2659
      @tukannath2659 Місяць тому

      It's correct but your method is confusing a little bit

    • @mywork1011
      @mywork1011 21 день тому

      ​@@spaceasphalt9510eat 5star do nothing

  • @sachinkumar-rr1zw
    @sachinkumar-rr1zw 3 місяці тому +2

    Explained everything very effectively in much simpler ways.
    Thanks 🙏🏻

  • @RajivMehta-l6s
    @RajivMehta-l6s 7 місяців тому +4

    You are a brilliant Teacher . God bless you.

  • @KuldeepSingh-nq1vi
    @KuldeepSingh-nq1vi 7 місяців тому +5

    You really explain the topic in detailed manner...I have become your fan..

  • @aniketkeshari4114
    @aniketkeshari4114 4 місяці тому +6

    A = str(" Do you see $")
    Print(find[$])

  • @abdullahmajeed-p1m
    @abdullahmajeed-p1m 8 місяців тому +6

    i love her method of teaching

  • @JigyasuKalyan
    @JigyasuKalyan 5 місяців тому +4

    Thanks for all your help. practice maximum out of 4 different number
    a = int(input("Enter First number"))
    b = int(input("Enter Second number"))
    c = int(input("Enter Third number"))
    d= int(input("Enter Forth number"))
    if a>=b and a>=c and a>=d:
    print("First number is Greatest: ", a)
    elif b>=c and b>=d:
    print("Second number is Greatest: ", b)
    elif c>=d:
    print("Third number is Greatest: ", c)
    else:
    print("Forth number is Greatest: ", d)
    Yeah, I did the same but then i tried giving a three digit input such as a = 67, b = 79, c = 54, d = 525...but it got error after trying very much then i tried replacing three digit number with 2 digit and got it correct...and then realised that its just taking 2 digits from starting in larger digit numbers...if i would put 875 then coz 87 is greater than 79 it will output 875 :)

    • @Labakishor24
      @Labakishor24 4 місяці тому +1

      a = int(input("entern first number"))
      b = int(input("entern first number"))
      c = int(input("entern first number"))
      d = int(input("entern first number"))
      if(a>=b and a >= c):
      print("first number is lergest", a )
      elif(a>= d ):
      print("first number is lergest", a )
      elif(b>=c):
      print("seconmd number is lergest", b )
      elif(c>=d):
      print("seconmd number is lergest", c)
      else:
      print("third is largest",d)
      # WAP to find the greatest of 3 number's entered by the user
      check it

    • @tunasworkplace
      @tunasworkplace 2 місяці тому

      a = int(input("Enter First number"))
      b = int(input("Enter Second number"))
      c = int(input("Enter Third number"))
      d= int(input("Enter Forth number"))
      if (a>=b and a>=c and a>=d):
      print("First number is Greatest: ", a)
      elif (b>=c and b>=d):
      print("Second number is Greatest: ", b)
      elif (c>=d):
      print("Third number is Greatest: ", c)
      else:
      print("Forth number is Greatest: ", d)
      # the same code is running you have to write the condition under the bracket ( )

  • @jxjatin
    @jxjatin 8 місяців тому +4

    This actually helped , Thankyou MAM for making the series

  • @_starlord_0_7
    @_starlord_0_7 5 місяців тому +3

    Tq mam , I finally completed lecture 1 & it's practice Q's . Your way of teaching helped me a lot .

  • @Kurkure_Brahma
    @Kurkure_Brahma 8 місяців тому +17

    Mam next language C++ full course please ❤

  • @TosheenFiroz
    @TosheenFiroz 17 днів тому +1

    I was worried a lot ...how to do ,what to do , but she makes the things very easy ... .it was a long video heads off to her she sat so long to prepare this video and to make the things ease for us
    .....we really appreciate your work ....thanks from heart ❤️

  • @technicalstatusmuna4594
    @technicalstatusmuna4594 8 місяців тому +9

    Thankyou maam
    Please give a roadmap for machine learning

  • @HackRealmGamin
    @HackRealmGamin Місяць тому +1

    Ig in third programme for checking which number is greatest of three theirs a probability that the two of the numbers might become equal or all the three numbers bcom equal so I added that too 😅 in mine

  • @somasreenandientertainment7736
    @somasreenandientertainment7736 2 місяці тому +7

    Computer Science Technology (CST) koi Dekh rahi ho tho like koro

  • @Arpitpalsingh
    @Arpitpalsingh 2 місяці тому +7

    a = int(input("enter first number : "))
    b = int(input("enter second number : "))
    c = int(input("enter third number : "))
    d = int(input("enter forth number : "))
    if(a>=b and a>=c and a>=d):
    print("largest number =",a)
    elif(b>=c and b>=d):
    print("largest number =",b)
    elif(c>=d):
    print("largest number =",c)
    else:
    print("largest number =",d)
    ❤❤

  • @raj422
    @raj422 2 місяці тому +9

    Koi civil engineering wala bhi hai kya 😅😅😅

  • @vedantkanade-jq2nz
    @vedantkanade-jq2nz 3 місяці тому +1

    This first two lecture are very easy to study and this is so imp for my computer engieneer study
    & Thank you for making this beautiful and excellent tutorial with this much effort!!
    ❤❤❤❤❤

  • @SyedMYahya-vf9vw
    @SyedMYahya-vf9vw 8 місяців тому +4

    Thank you so much I was curiously waiting for second lecture ❤❤
    Please share 1 video of python series daily.This video is very helpful for the beginners and the others who read python first tiem

  • @smrutiranjan9115
    @smrutiranjan9115 8 місяців тому +13

    Mca students attendance here✌️✌️

  • @leptoketrin
    @leptoketrin 8 місяців тому +9

    BCA Student are here guysss❤❤❤❤

  • @reels_guru123
    @reels_guru123 4 місяці тому +2

    Thank you ❤🎉
    Aap bhut acha pdate ho mam dil se thankyou ❤

  • @Smiling_Teeth_5
    @Smiling_Teeth_5 2 місяці тому +3

    Thanks mam to teach us ❤😊 30:52

  • @KamilAwais-x3m
    @KamilAwais-x3m 5 місяців тому +2

    great ☺miss SHRADHA , from Pakistan

  • @prashis8147
    @prashis8147 8 місяців тому +11

    Need DSA full Course ❤

  • @munirafsar1238
    @munirafsar1238 2 місяці тому

    # homework which one is greater among 4 numbers
    f=6
    g=6
    h=9
    j=8
    if (f>g and f>h and f>j):
    print (" f is greater ")
    elif (g>h and g>j):
    print (" g is greater ")
    elif h>j:
    print ("h is greater ")
    else:
    print('j is greater ')

  • @ckrajatff5812
    @ckrajatff5812 Місяць тому +12

    Kisi ne college me fee dekar yaha seekh rahe hai😂😂

  • @HeadCountKFHeadCountKF
    @HeadCountKFHeadCountKF 14 днів тому

    for those who are saying that negative slicing is difficult here is a simple way to do that see we have a variable str = "Apna College" so agar hamein chahiye str[-6:-3] to hum kia kar sakte hai ke length of string se hum minus kr den ge 6 ko to hamare paas aiga 5 or 3 ko karen ge to aiga 8 means it come str[5:8] to ye bhi bohat acha tarika hai for beginners

  • @salonikasera6283
    @salonikasera6283 8 місяців тому +3

    Thanks didi you are an excellent teacher
    I have no words for you

  • @GIGACHAD0FFICIAL
    @GIGACHAD0FFICIAL Місяць тому +1

    light = input("What is the colour of light?")
    if(light == "green"):
    print("You can go ")
    elif(light == "red"):
    print("Wait!!")
    elif(light == "orange"):
    print("wait a second")

  • @Shafaaa0724
    @Shafaaa0724 4 місяці тому +11

    Any 6th class student like me?

    • @dhanavathraghu8216
      @dhanavathraghu8216 4 місяці тому +6

      No,I'm 8,and you are really lucky to start it early .best of luck from my side 👍

    • @mayankkushwaha-jh7wm
      @mayankkushwaha-jh7wm 4 місяці тому +2

      Yes bro😊😊😊😊 Mai hu na 🎉🎉🎉🎉🎉

    • @pranavtawale6891
      @pranavtawale6891 3 місяці тому +7

      Are khelo masti Karo itani bhi kay jaldi he😅😅

    • @anuragdabral8959
      @anuragdabral8959 3 місяці тому

      ​@@pranavtawale6891bc pogo dekhne ki umar mai python dekhre😂

    • @shreeshanthashorts
      @shreeshanthashorts 3 місяці тому +2

      Me to LKG ka hu

  • @susantodehingia
    @susantodehingia 2 місяці тому +1

    Mam, I have a question, can we learn Java script and python simultaneously at once? Could you explain mam, please.

  • @Syed_225
    @Syed_225 4 місяці тому +3

    Try it :
    Str=I am a boy
    print(str[ : ])
    Output :
    I am a boy

  • @harshvishwakarma843
    @harshvishwakarma843 6 місяців тому +1

    HW question:
    a=int(input("enter your first number :"))
    b=int(input("enter your second number :"))
    c=int(input("enter your third number :"))
    d=int(input("enter your fourth number :"))
    if(a>=b and a>=c and a>=d):
    print("first number is largest that is",a)
    elif(b>c):
    print("second number is largest that is",b)
    elif(c>d):
    print("third number is largest that is",c)
    else:
    print("fourth number is largest that is",d)

  • @amminaiqball
    @amminaiqball 8 місяців тому +3

    i am from Pakistan maam you are very good teacher. Thank you so much I was curiously waiting for the second lecture ❤❤

  • @warrior_sahil356
    @warrior_sahil356 5 місяців тому +1

    di my code for greatest of three number with some modifications:
    num1=int(input("Enter first number:"))
    num2=int(input("Enter second number:"))
    num3=int(input("Enter third number:"))
    if(num1>=num2 and num1>=num3):
    if(num1==num2):
    print("both first and second number are greatest")
    elif(num1==num3):
    print("both first and third number are greatest")
    else:
    print("first number is greatest")
    elif(num2==num3):
    print("both second and third number are greatest")
    elif(num2>=num3):
    print("second number is greatest")
    else:
    print("THird number is greatest")
    FOR FOUR NUMBERS:
    num1=int(input("Enter first number:"))
    num2=int(input("Enter second number:"))
    num3=int(input("Enter third number:"))
    num4=int(input("Enter fourth number:"))
    if(num1>=num2 and num1>=num3 and num1>=num4):
    if(num1==num2):
    print("both first and second number are greatest")
    elif(num1==num3):
    print("both first and third number are greatest")
    elif(num1==num4):
    print("both first and fourth number are greatest")
    else:
    print("first number is greatest")
    elif(num2>=num3 and num2>=num4):
    if(num2==num3):
    print("both numbers second and third are greatest")
    elif(num2==num4):
    print("both numbers second and fourth are greatest")
    else:
    print("number second is grearest")
    elif(num3>=num4):
    if(num3==num4):
    print("both third and fourth number are greatest")
    else:
    print("number three is greatest")
    else:
    print("number four is greatest")
    thank you for the hint in the video😊

    • @yugneticgaming
      @yugneticgaming 4 місяці тому

      Bhai.. Chhota krna hota hai.. Complex nhi

  • @vedantbhalerao6273
    @vedantbhalerao6273 4 місяці тому +5


    Strings are a data type that stores a sequence of characters, and can be created in different ways.
    00:01

    Python uses double quotes and escape sequences for creating strings.
    02:06

    Concatenating and finding length of strings in Python
    06:09

    String manipulation in Python and understanding string length and indexing
    08:27

    Slicing in Python involves accessing parts of a string and is crucial for dealing with data in machine learning.
    13:02

    Explaining string indexing and slicing in Python
    15:03

    Backward counting is helpful for string manipulation
    18:50

    Understanding string functions, ends with
    20:47

    Learn about string replacement and find functions in Python
    24:35

    Count function in strings can be used to find the occurrences of a substring
    26:47

    Conditional statements are used to execute code based on specific conditions.
    30:36

    Using indentation and conditional statements in Python
    32:31

    Difference between 'if' and 'lf'
    36:27

    Using 'if' and 'else' statements in Python
    38:22

    Using conditional statements and logical operators to calculate grades.
    42:09

    Using conditional statements to determine grades based on student marks in Python
    44:17

    Even numbers are divisible by two with no remainder
    48:23

    Program to find the greatest value among three numbers
    50:31

    Understanding multiples and basic coding practice

  • @Fearless_Gaming-12
    @Fearless_Gaming-12 27 днів тому

    no one have like you on entire yt your explanation teaching style notes every things is top level i mean i love your lectures even not only python i learnt lots of things from yr playlist like css,js,html,dbms and python you r outstanding

  • @vikk98
    @vikk98 8 місяців тому +3

    Thank ❤I love your videos from village

  • @arvinddhaka7478
    @arvinddhaka7478 Місяць тому +1

    I dont know why professors teach by assuming that we know all the basics in the 1st Semester ? 😢😢 , Thank God , Teachers like you exist and teach for free in a wonderful way .🙏🙏

  • @vaibhavsuryawanshi2860
    @vaibhavsuryawanshi2860 8 місяців тому +4

    Please ek playlist on ReactJs

  • @TUFgamingofficial
    @TUFgamingofficial 25 днів тому

    tommorow is my computer science exam and i am watching this glamouras tutorial like the way she explains and she also do practical. thank you ma'am for teaching me i dont have any computer teacher at my home. thank you for helping me in exam
    hunny
    a student of class 7th b

  • @utkrishtpatel8975
    @utkrishtpatel8975 5 місяців тому +9

    Kaun kaun B tech krne se phle dekh Raha h

  • @Shraddha_Merwade
    @Shraddha_Merwade Місяць тому

    Your tutorials are always so well-explained and easy to follow.❤ Thank you for this fantastic Python tutorial, your explaination in the lectures was so clear and easy to understand. Looking forward to more tutorials from you. Keep up the great work!👏🏻👏🏻

  • @vaibhavsuryawanshi2860
    @vaibhavsuryawanshi2860 8 місяців тому +3

    One playlist on ReactJs

  • @jb1982shantanu
    @jb1982shantanu 20 днів тому

    Hey I am not an engineer and keen to learn python language and searching randomly in you tube for lectures and luckily found your course and found it very useful. Your way of explaining things made the process interesting rather than reading from book and then practicing which was kind of very boring. Thanks for this entire basic syllabus and once I am fully done will write back full feedback with learning progress😀 :)

  • @kuchv6564
    @kuchv6564 8 місяців тому +250

    Electrical koi ye dekh raha to like kre

    • @Pritam52
      @Pritam52 8 місяців тому +4

      Kis college se ho??

    • @kuchv6564
      @kuchv6564 8 місяців тому +5

      @@Pritam52 passout hu cec college Jharkhand

    • @kuchv6564
      @kuchv6564 8 місяців тому +2

      @@Pritam52 sayad tm to nit se ho

    • @syed_wahid
      @syed_wahid 8 місяців тому +3

      Electrical Kashmir University 6th sem

    • @Pritam52
      @Pritam52 8 місяців тому

      @@kuchv6564 hn jii

  • @PythonProject-w8v
    @PythonProject-w8v 22 дні тому +1

    Concept padhne se jda mza question solve karne me aa rha hai 🙂

  • @vedikasharma4212
    @vedikasharma4212 8 місяців тому +3

    Thank you mam for this amazing lecture.. 💚
    I am in class 11
    it will definitely help me in my exams💖

    • @Pritam52
      @Pritam52 8 місяців тому

      1st year. ??

    • @vedikasharma4212
      @vedikasharma4212 8 місяців тому

      @@Pritam52 Bro class 11(school)

    • @Pritam52
      @Pritam52 8 місяців тому

      @@vedikasharma4212 great 👍

  • @jiyabhayana9184
    @jiyabhayana9184 4 місяці тому +1

    Thank youu so much shraddhaa diii❤❤
    Lecture are awesomeee❤❤
    Going to start my first year in July end ..beginning my journey with python by studying from youu❤❤
    These lecturess are so helpful and your teaching has made it super easy to understand
    Loads of love and respect to you❤❤
    Dii also i haven't joined sigma 3.0 in may as my entrance exams were going..so can i join it now

  • @balajeesharma7072
    @balajeesharma7072 8 місяців тому +6

    This is the best lecture ever

  • @SimranSharma-i8i
    @SimranSharma-i8i Місяць тому

    You are awesome seriously.....the way you speak ....the way you are teaching...amazing...amazing...amazing....

  • @Quick.Recipee
    @Quick.Recipee 5 місяців тому +9

    Bsc cs or it anyone 😅 ????

  • @thememefactory33
    @thememefactory33 6 місяців тому +1

    Q1
    Str = thanks di
    Print(len(Str))
    Output - 9

  • @atharvsatghare4943
    @atharvsatghare4943 19 днів тому

    b = int(input("enter secound value:"))
    c = int(input("enter thried value:"))
    d = int(input("enter fourth value:"))
    if(a>=b and a>=c):
    print("greater ",a)
    elif(b>=c and b>=d):
    print("greater ",b)
    elif(c>=d):
    print("greater ",c)
    else:
    print("greater",d)

  • @MoNiL_DeVLuK1111
    @MoNiL_DeVLuK1111 4 години тому +1

    L-2 DONE 🚀

  • @naveenkhanalinnerjourney6206
    @naveenkhanalinnerjourney6206 6 місяців тому +1

    Very cool way of teaching. Perfect, Love you teacher!

  • @psychologyfacts4365
    @psychologyfacts4365 8 місяців тому +1

    a=4
    b=1
    c=7
    If(a>b) :
    Print("a is bigger ")
    elif(a>c) :
    Print("a is bigger ")
    elif(b>c) :
    Print("b is bigger")
    else :
    Print("c is bigger ")
    Getting incorrect answer as " a is bigger ".
    Help ..

    • @harshinidharani3319
      @harshinidharani3319 4 місяці тому

      if condition is getting true...so it is not entering into elif

  • @the_arsh_srivastava
    @the_arsh_srivastava 8 місяців тому +2

    Thank you ma'am for this beautiful series of python❤

  • @Shivi-mo1dq
    @Shivi-mo1dq 3 місяці тому +1

    Brackets are not required to give 'if' and 'elif' conditions in conditional statements?

  • @ACQUAINTANCE-UNKNOWN
    @ACQUAINTANCE-UNKNOWN 8 місяців тому +2

    Thanks didi ❤😊
    HELPS ME A LOT 🙏😌#GULABI DIL
    #GULABI DIL
    #GULABI DIL

  • @NjamLol-o1y
    @NjamLol-o1y 15 днів тому +1

    30:18 conditional

  • @granteddearning
    @granteddearning 7 місяців тому

    Di Maine apka H.W complete kar diya
    a=int(input ("enter your first num:---"))
    b=int(input ("enter your second num:---"))
    c=int(input ("enter your third num:---"))
    d=int(input ("enter your fourth num:---"))
    if(a>=b and a>=c):
    print("a is largest num")
    elif(b>=c and b>=d):
    print("b is largest num")
    elif(c>=d and c>=a):
    print("c is largest num")
    else:
    print("d is largest num")

  • @SM_Imran_Khan
    @SM_Imran_Khan 4 місяці тому

    thank you mem , my dream coding journey start with you. i'm from bangladesh and i notice that you are the best teacher i have ever seen. bless for me

  • @DRH.Official
    @DRH.Official 2 місяці тому +2

    Didi usme count nhi karna tha find karna tha na 😅

  • @shuklajikevlogs013
    @shuklajikevlogs013 6 місяців тому +1

    Thank you so much shradha ❤didi....and thank you so much for give the python full course....❤🙏....

  • @AshishShekhar-yw1cz
    @AshishShekhar-yw1cz 4 місяці тому +1

    Homework Question:
    num1 = int(input("Number1 = "))
    num2 = int(input("Number2 = "))
    num3 = int(input("Number3 = "))
    num4 = int(input("Number4 = "))
    if(num1>=num2 and num1>=num3 and num1>=num4):
    print("Number 1 is greatest.")
    elif(num2>=num1 and num2>num3 and num2>num3):
    print("Number 2 is greatest.")
    elif(num3>=num1 and num3>num2 and num3>num4):
    print("Number 3 is greatest.")
    else:
    print("Number 4 is greatest.")

  • @HarshYadav-hj8ft
    @HarshYadav-hj8ft 3 місяці тому

    str.capitalize() --> You said this function makes the first character to UpperCase(Capital). But actually this function also makes all other characters to Lower Case which are in Upper case.

  • @nabajyotikarmakar3287
    @nabajyotikarmakar3287 8 місяців тому +2

    Mam aap bohot ache padhate ho God bless u dil s❤😊

  • @arvinddhaka7478
    @arvinddhaka7478 Місяць тому

    In the making of program for grades if we do not use the and operator , then also it will work fine , there is logically no need of using the and operator .

  • @aliamin5140
    @aliamin5140 22 дні тому

    I'm from Pakistan it's an amazing lecture for the beginner truly appreciated

  • @amitshelke9447
    @amitshelke9447 8 місяців тому

    Thank you for the insightful lectures. Just a question on Conditional statement question where we tried solving Grades. What if we did not used the 'and' operator.
    marks = int(input("Enter marks of a student"))
    if(marks>=90):
    print("Grade A")
    elif(marks>=80):
    print("Grade B")
    elif(marks>=70):
    print("Grade C")
    else:
    print("Grade D")

  • @summiya_bint_abdullah
    @summiya_bint_abdullah 4 дні тому

    Amazing lacture api, thnk you so much ma na kafi sari lacture dakha, but apka sikhaya hoi amazing ha, ak dam smag a gai, acha sa, or han mujhy bas if, elif or else ka as a biginner hora sa problem howa smajna ma, Pakistan sa Ceo and Founder of Xeven Solutuin Sir Irfan Malik na course launch kia tha live, os ma sir Haris na If, elif or else ki ak example di thi. amazing example thi.

  • @ABHISHEKVERMA-g9g
    @ABHISHEKVERMA-g9g 8 місяців тому +2

    Please make a video of all the patterns of python

  • @md.faraazshaik7361
    @md.faraazshaik7361 7 місяців тому

    # largest of 4 numbers
    a=int(input("enter first number "))
    b=int(input("enter second number "))
    c=int(input("enter third number "))
    d=int(input("enter fouth number "))
    if(a>=b and a>=c and a>=d):
    print("first number is greatest ")
    elif(b>=c and c>=d):
    print(" second number is greatest")
    elif(c>=d):
    print("third number is greatest")
    else:
    print("fourth number is geatest")

  • @fitnessclip2977
    @fitnessclip2977 18 днів тому

    num = 1
    rem = num % 2
    if ( rem == 0):
    print ( "even")
    else:
    print ( "odd")

  • @GW_HIMANSHU600
    @GW_HIMANSHU600 8 місяців тому +1

    Hello didi..... I am 10th standard student and niw i am learning python from you ...its my great pleasure......