Lecture 2 : Strings & Conditional Statements | Python Full Course

แชร์
ฝัง
  • เผยแพร่เมื่อ 15 ม.ค. 2025

ความคิดเห็น • 1.3K

  • @BilalNoor-n9w
    @BilalNoor-n9w 11 หลายเดือนก่อน +394

    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 10 หลายเดือนก่อน +7

      You are a livesaver❤❤😊😅

    • @vishal1980able
      @vishal1980able 10 หลายเดือนก่อน +10

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

    • @ikrishi_
      @ikrishi_ 9 หลายเดือนก่อน

      ​@@vishal1980able Us bhai us

    • @ravibukya4339
      @ravibukya4339 8 หลายเดือนก่อน

      th-cam.com/video/Eyp36KUYC_g/w-d-xo.html

    • @namanmishra8355
      @namanmishra8355 8 หลายเดือนก่อน +1

      lovr u bro

  • @bsafridi
    @bsafridi 11 หลายเดือนก่อน +238

    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 6 หลายเดือนก่อน +3

      are those bullies?

    • @OPPerson-y6p
      @OPPerson-y6p 5 หลายเดือนก่อน

      @@teclues3893 he meant bad teachers

    • @user-mouli1897
      @user-mouli1897 4 หลายเดือนก่อน +6

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

    • @divyanshm.2276
      @divyanshm.2276 2 หลายเดือนก่อน

      people who force to *ONLY STUDY*

    • @udayborde3938
      @udayborde3938 หลายเดือนก่อน

      Hey what is your profile photo can I know

  • @gchethan9472
    @gchethan9472 3 หลายเดือนก่อน +37

    Hello all
    This one the best python basic lecture you will ever get,
    In the entire video she never asked for subscribe or like.
    Let’s encourage her to do more courses like this and help crores of students and learner’s. Keep up the good work Shraddha and keep on helping people.

  • @Ayaan_khan21
    @Ayaan_khan21 11 หลายเดือนก่อน +164

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

    • @Thegurlsgirl
      @Thegurlsgirl 10 หลายเดือนก่อน +5

      thank u

    • @anandfawde3079
      @anandfawde3079 9 หลายเดือนก่อน +1

      thanks bro

    • @SasukeUchih91
      @SasukeUchih91 9 หลายเดือนก่อน +3

      ye koi kehne wali baat hai ye toh aata hai

    • @Ayaan_khan21
      @Ayaan_khan21 8 หลายเดือนก่อน +7

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

    • @subhradeepkarmakar8500
      @subhradeepkarmakar8500 8 หลายเดือนก่อน +1

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

  • @MiniRomance
    @MiniRomance 11 หลายเดือนก่อน +70

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

    • @anandfawde3079
      @anandfawde3079 9 หลายเดือนก่อน +1

      I also thought the same😁😁

  • @mechanicalninjagaming6515
    @mechanicalninjagaming6515 6 หลายเดือนก่อน +44

    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 5 หลายเดือนก่อน +18

      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 5 หลายเดือนก่อน +5

      @@ADIATHASANRIYAD THANK YOU FOR THE TIPS☺

    • @kingsubrowstatus
      @kingsubrowstatus 4 หลายเดือนก่อน +1

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

    • @deetyadkedilaya
      @deetyadkedilaya 2 หลายเดือนก่อน +1

      @@ADIATHASANRIYAD Thank you soo much guys!you guys are the best!

    • @DebAaaa-l2y
      @DebAaaa-l2y 2 หลายเดือนก่อน

      Wrong

  • @masoumehamiri7186
    @masoumehamiri7186 11 หลายเดือนก่อน +40

    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 8 หลายเดือนก่อน

      th-cam.com/video/Eyp36KUYC_g/w-d-xo.html

  • @atifmalik8012
    @atifmalik8012 11 หลายเดือนก่อน +22

    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😅

    • @ashakumawat4610
      @ashakumawat4610 8 หลายเดือนก่อน

      ​@subhadipmondal230whats wrong with this code?

    • @AmitRajput-jm7lg
      @AmitRajput-jm7lg 8 หลายเดือนก่อน +1

      It's right

    • @ushakamble4254
      @ushakamble4254 8 หลายเดือนก่อน

      ​@@ashakumawat4610 1st logical statement is wrng ig

    • @Vsvharsh2
      @Vsvharsh2 7 หลายเดือนก่อน

      Wonderful brother!.

    • @aibclogic
      @aibclogic 6 หลายเดือนก่อน +1

      Right 👍 😅​@subhadipmondal230

  • @Priya-l1x1u
    @Priya-l1x1u 28 วันที่ผ่านมา +7

    प्रेरक विचार:खुशी के लिए काम करेंगे तो खुशी नहीं मिलेगी, लेकिन खुश होकर काम करेंगे तो खुशी के साथ ही सफलता भी मिलेगी

  • @mdjahangirhossain6203
    @mdjahangirhossain6203 11 หลายเดือนก่อน +73

    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 9 หลายเดือนก่อน +1

      @rehankabir7601 lol😂

    • @seekhoaursikhao4046
      @seekhoaursikhao4046 9 หลายเดือนก่อน +3

      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 8 หลายเดือนก่อน

      th-cam.com/video/Eyp36KUYC_g/w-d-xo.html

  • @RajivMehta-l6s
    @RajivMehta-l6s 10 หลายเดือนก่อน +7

    You are a brilliant Teacher . God bless you.

  • @killerdestiny786
    @killerdestiny786 8 หลายเดือนก่อน +5

    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)

    • @Alex-d9p6x
      @Alex-d9p6x 8 หลายเดือนก่อน

      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 :)

  • @nikhilkumarsingh2348
    @nikhilkumarsingh2348 9 หลายเดือนก่อน +1

    Lots of love from Hazaribagh di❤️ ..God bless you alot and goof wishes to u always!!✨️..#started python learning currently 🌟

  • @Muskanmotwani777
    @Muskanmotwani777 7 หลายเดือนก่อน +12

    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☺☺☺☺☺☺

    • @Namelix.9876
      @Namelix.9876 หลายเดือนก่อน

      Phir aap python padhne aayi hi kyu h .. neither it background nor a science student.. 😂😂😂..

  • @Aokikazume
    @Aokikazume 7 หลายเดือนก่อน +15

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

    • @ZaraQureshi-i1d
      @ZaraQureshi-i1d 2 หลายเดือนก่อน +1

      output nhi aara ...

    • @RipSenpai2711
      @RipSenpai2711 2 หลายเดือนก่อน

      else:
      print("light is broken")

  • @mikeytoman4153
    @mikeytoman4153 11 หลายเดือนก่อน +7

    42.48 we do not need code mark

    • @mikeytoman4153
      @mikeytoman4153 11 หลายเดือนก่อน +1

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

  • @Arslan-mm7cg
    @Arslan-mm7cg 4 หลายเดือนก่อน +5

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

  • @Anonymous-Guy-01
    @Anonymous-Guy-01 11 หลายเดือนก่อน +213

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

    • @parthsojitra9221
      @parthsojitra9221 10 หลายเดือนก่อน +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 7 หลายเดือนก่อน +4

      Dsa with py

    • @PrabhuVenkata-tm6bu
      @PrabhuVenkata-tm6bu 7 หลายเดือนก่อน

      @@parthsojitra9221 dsa with python

    • @Om-cn2sn
      @Om-cn2sn 7 หลายเดือนก่อน +3

      dsa with python

    • @RAMESHKUMAR-zj4zi
      @RAMESHKUMAR-zj4zi 6 หลายเดือนก่อน

      DSA with PYTHON ❤

  • @RationalBeliever01
    @RationalBeliever01 11 หลายเดือนก่อน +37

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

  • @KaramatHussain-pr5sm
    @KaramatHussain-pr5sm 11 หลายเดือนก่อน +10

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

  • @KuldeepSingh-nq1vi
    @KuldeepSingh-nq1vi 11 หลายเดือนก่อน +5

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

  • @amminaiqball
    @amminaiqball 11 หลายเดือนก่อน +6

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

    • @Zamacomputer
      @Zamacomputer 11 หลายเดือนก่อน +1

      me too

  • @prabhupad_servant_anik
    @prabhupad_servant_anik 20 วันที่ผ่านมา +1

    Keep learning and keep exploring...very great line...I am following you since 4+ years...but now gradually I'm understanding that why you say this line.....

  • @sachinkumar-rr1zw
    @sachinkumar-rr1zw 6 หลายเดือนก่อน +3

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

  • @Priya-l1x1u
    @Priya-l1x1u 28 วันที่ผ่านมา +3

    जो अपने सपनों को पूरा करने का साहस करता है, वह हर मुश्किल को पार कर सकता है।

  • @suneetham7143
    @suneetham7143 หลายเดือนก่อน +2

    excellent , appreciate your efforts Shradha

  • @garengang
    @garengang 11 หลายเดือนก่อน +16

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

    • @ravibukya4339
      @ravibukya4339 8 หลายเดือนก่อน

      th-cam.com/video/Eyp36KUYC_g/w-d-xo.html

  • @SimranSharma-i8i
    @SimranSharma-i8i 4 หลายเดือนก่อน

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

  • @titassamanta
    @titassamanta 11 หลายเดือนก่อน +12

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

  • @KamilAwais-x3m
    @KamilAwais-x3m 8 หลายเดือนก่อน +2

    great ☺miss SHRADHA , from Pakistan

  • @abdullahmajeed-p1m
    @abdullahmajeed-p1m 11 หลายเดือนก่อน +6

    i love her method of teaching

  • @jxjatin
    @jxjatin 11 หลายเดือนก่อน +4

    This actually helped , Thankyou MAM for making the series

  • @Kurkure_Brahma
    @Kurkure_Brahma 11 หลายเดือนก่อน +19

    Mam next language C++ full course please ❤

  • @naveenkhanalinnerjourney6206
    @naveenkhanalinnerjourney6206 9 หลายเดือนก่อน +1

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

  • @rengoku-y5n
    @rengoku-y5n 11 หลายเดือนก่อน +9

    BCA Student are here guysss❤❤❤❤

    • @anandMaharana04
      @anandMaharana04 11 หลายเดือนก่อน

      Me also

    • @Tarunchauhan444
      @Tarunchauhan444 11 หลายเดือนก่อน

      youtube.com/@Tarun-Thakur77?si=d8bVOp0FD9PEv6si

  • @musichr
    @musichr 17 วันที่ผ่านมา

    i found this one playlist only on youtube and its amazing you are a very good teacher sister this is very easy to lern course for all the beginers of python programming language thank you so much to teach us like this really its to good

  • @Alex-d9p6x
    @Alex-d9p6x 8 หลายเดือนก่อน +5

    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 8 หลายเดือนก่อน +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 5 หลายเดือนก่อน

      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 ( )

  • @xoxo-jwx
    @xoxo-jwx 2 หลายเดือนก่อน +1

    This is the best series of python i have ever seen on yt ✨....and your way of teaching is just awesome 💖.. thanks for making efforts for this series ❤ I'm so grateful to u 😌

  • @_starlord_0_7
    @_starlord_0_7 8 หลายเดือนก่อน +3

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

  • @momtraders
    @momtraders หลายเดือนก่อน +1

    I'm 40 and learning Python. Thank you, Shraddha and team, for the brilliant job!

  • @Arpitpalsingh
    @Arpitpalsingh 6 หลายเดือนก่อน +9

    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)
    ❤❤

  • @tushapalta7318
    @tushapalta7318 2 หลายเดือนก่อน

    I've recently started my masters in AI in bioscience and i was really struggling with the basics of python until i came across your channel!!! You've explained the basics so clearly and to the point that i can actually move on to harder stuff now so thank you so much !!

  • @creativemantra5884
    @creativemantra5884 11 หลายเดือนก่อน +42

    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 6 หลายเดือนก่อน +2

      Nice😊

    • @NsrinivasReddy-kt8js
      @NsrinivasReddy-kt8js 6 หลายเดือนก่อน +5

      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 6 หลายเดือนก่อน +1

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

    • @tukannath2659
      @tukannath2659 5 หลายเดือนก่อน

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

    • @mywork1011
      @mywork1011 4 หลายเดือนก่อน

      ​@@spaceasphalt9510eat 5star do nothing

  • @Jzkssm
    @Jzkssm 17 วันที่ผ่านมา +2

    Hey, at 24:10, You told that str.capitalize() capitalize the first letter but you forget to tell that decapitalizes all other letters in string.

  • @SyedMYahya-vf9vw
    @SyedMYahya-vf9vw 11 หลายเดือนก่อน +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

  • @TosheenFiroz
    @TosheenFiroz 4 หลายเดือนก่อน +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 ❤️

  • @aniketkeshari4114
    @aniketkeshari4114 8 หลายเดือนก่อน +8

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

    • @nimaincharanbarik6254
      @nimaincharanbarik6254 7 หลายเดือนก่อน +2

      invalid syntax😊

    • @ajaychimnani7985
      @ajaychimnani7985 7 หลายเดือนก่อน

      Successfully erroe

    • @tshitijpradhan
      @tshitijpradhan 4 หลายเดือนก่อน

      Brother, do this to make it run
      A = "Do you see $"
      print(A.find("$"))
      Keep learning!

  • @shuklajikevlogs013
    @shuklajikevlogs013 10 หลายเดือนก่อน +1

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

  • @vedantbhalerao6273
    @vedantbhalerao6273 8 หลายเดือนก่อน +6


    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

  • @ayushff7x
    @ayushff7x หลายเดือนก่อน +2

    50:00
    num1 = int(input("Enter a number: "))
    if ((num1 % 2)==0):
    print("Hah ! It is an Even number🗿🦁")
    elif ((num1 % 2)!=0):
    print("Hah ! It is an Odd number ☑")

    • @vikkyjoker1610
      @vikkyjoker1610 หลายเดือนก่อน +1

      User = "ayush"
      Print (user)
      Output= hah! It's ayush 😁

    • @ayushff7x
      @ayushff7x หลายเดือนก่อน

      @@vikkyjoker1610 👍👍

  • @vikk98
    @vikk98 11 หลายเดือนก่อน +3

    Thank ❤I love your videos from village

  • @Smiling_Teeth_5
    @Smiling_Teeth_5 5 หลายเดือนก่อน +3

    Thanks mam to teach us ❤😊 30:52

  • @Celestial-k9i
    @Celestial-k9i 5 วันที่ผ่านมา

    Thank You so much!!! This was so helpful!!!!!!!!!!!!!♥♥♥♥♥

  • @salonikasera6283
    @salonikasera6283 11 หลายเดือนก่อน +3

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

  • @sanankhan7752
    @sanankhan7752 4 หลายเดือนก่อน +3

    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)

  • @pradeepprajapat4272
    @pradeepprajapat4272 9 หลายเดือนก่อน +1

    Such a great lecture ma'am ❤

  • @MaqfiHussain
    @MaqfiHussain 2 หลายเดือนก่อน +5

    In the code to find largest number.
    If you put numbers in decreasing order it gives wrong answer.
    For eg.
    First number=10
    Second=9
    Third=8
    Result:: 9 is largest
    Can anybody help what is wrong with the code.
    Edit; 52:46

    • @dexterjam4023
      @dexterjam4023 หลายเดือนก่อน

      elif(b>=c and b>=a) condition deke try karo...it should work

  • @syedmadnirazaali7838
    @syedmadnirazaali7838 2 หลายเดือนก่อน

    Your Teaching Style is very very very good. Thanks for the Series

  • @prashis8147
    @prashis8147 11 หลายเดือนก่อน +11

    Need DSA full Course ❤

    • @MovieOk-p8q
      @MovieOk-p8q 11 หลายเดือนก่อน +1

      Yes me also complete pytho dsa

    • @vamshitarun4399
      @vamshitarun4399 7 หลายเดือนก่อน

      dsa?

  • @HimanshuKumarMaurya-kv8pp
    @HimanshuKumarMaurya-kv8pp 21 วันที่ผ่านมา +1

    41:29
    Marks=int(input("Enter your marks = "))
    if(Marks >=90):
    print("Grade A")
    elif(Marks >=80):
    print("Grage B")
    elif(Marks >=70):
    print("Grade C")
    elif(Marks >=60):
    print("Grade D")
    elif(Marks >=50):
    print("Grade E")
    else:
    print("You are Fail")
    print("Your Marks=",Marks)
    49:58
    Number=int(input("Enter Number "))
    Number1= Number%2
    if(Number1 == 0):
    print("Even")
    else:
    print("Odd")

  • @somasreenandientertainment7736
    @somasreenandientertainment7736 5 หลายเดือนก่อน +7

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

  • @Rohit45hello-i7h
    @Rohit45hello-i7h 15 วันที่ผ่านมา +5

    Kon kon 5th class se dekh rha hai.. 😊

    • @FaisalKhan-ft6df
      @FaisalKhan-ft6df 2 วันที่ผ่านมา

      Bhai paida hote hi dekhne lag jata😂

  • @Priya-l1x1u
    @Priya-l1x1u 28 วันที่ผ่านมา +1

    YAHA ROJ KOI TUTTHA HAI KOI HARTHA HAI KOI BIKAR JATA HAI
    LAKIN JAMANA USI K JANTA HAI JO INN SAB KE BAAD BHI NIKHAR JATA HAI❤❤😊😊🎉🎉🎉🎉🎉😊😊

  • @balajeesharma7072
    @balajeesharma7072 11 หลายเดือนก่อน +6

    This is the best lecture ever

  • @Shraddha_Merwade
    @Shraddha_Merwade 5 หลายเดือนก่อน

    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!👏🏻👏🏻

  • @technicalstatusmuna4594
    @technicalstatusmuna4594 11 หลายเดือนก่อน +10

    Thankyou maam
    Please give a roadmap for machine learning

    • @stormbreaker8720
      @stormbreaker8720 24 วันที่ผ่านมา

      Which year .?

    • @technicalstatusmuna4594
      @technicalstatusmuna4594 23 วันที่ผ่านมา

      @stormbreaker8720 final year

    • @stormbreaker8720
      @stormbreaker8720 23 วันที่ผ่านมา

      @@technicalstatusmuna4594 ek favour kro ge bhai ?

    • @stormbreaker8720
      @stormbreaker8720 23 วันที่ผ่านมา

      @@technicalstatusmuna4594 mai 1st year hu machine learning start kr du kya ?

    • @technicalstatusmuna4594
      @technicalstatusmuna4594 23 วันที่ผ่านมา

      @@stormbreaker8720 nehi pehle web development karlo uske baad ya side mai thoda time deke machine learning continue karo

  • @reels_guru123
    @reels_guru123 7 หลายเดือนก่อน +2

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

  • @Syed_225
    @Syed_225 7 หลายเดือนก่อน +4

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

  • @sriramraghava2590
    @sriramraghava2590 28 วันที่ผ่านมา +1

    Strings & Conditional Statements done

  • @PriyanshuSharma-b6u
    @PriyanshuSharma-b6u 2 หลายเดือนก่อน +120

    Koi 11 class ka dekh raha hai

    • @JAISANATAN22-22
      @JAISANATAN22-22 2 หลายเดือนก่อน +5

      def draw _ diamond (n)
      " " "Draws a diamond Shape of Size n .
      Args:
      n: The Size of the diamond .
      " " "
      for i in range (1,n+1):
      print(" " " * (n-i) , "*"* (2*i-1))
      for i in range (n-1 ,0,-1):
      print (" " * (n-i) , "*")* (2*i-1))
      #Example usage :
      n=5
      draw_diamond(n)

    • @GHOSTGAMING-194
      @GHOSTGAMING-194 หลายเดือนก่อน +2

      Yes

    • @Ishpreetsingh721
      @Ishpreetsingh721 หลายเดือนก่อน +1

      Yes

    • @purvibhardwaj8508
      @purvibhardwaj8508 หลายเดือนก่อน +1

      Mee

    • @Happy_Gags12
      @Happy_Gags12 หลายเดือนก่อน

      MA hu na 1st year best

  • @ACQUAINTANCE-UNKNOWN
    @ACQUAINTANCE-UNKNOWN 11 หลายเดือนก่อน +2

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

  • @PinkiChaudhary-t1o
    @PinkiChaudhary-t1o 15 วันที่ผ่านมา +7

    Or batao 2025 mai kon Dekh rha h ?☺️

  • @utkrishtpatel8975
    @utkrishtpatel8975 9 หลายเดือนก่อน +9

    Kaun kaun B tech krne se phle dekh Raha h

  • @indiasemergingyouths7686
    @indiasemergingyouths7686 6 หลายเดือนก่อน

    Very interesting
    Excellent way of explaining❤

  • @vaibhavsuryawanshi2860
    @vaibhavsuryawanshi2860 11 หลายเดือนก่อน +4

    Please ek playlist on ReactJs

  • @technoinsaan6589
    @technoinsaan6589 หลายเดือนก่อน +2

    I have a doubt in 24:02 agar hamlog ne str .capitalize() likha toh voh str vala kaise print hua computer ko kaise bata chala ki uppar vala print karna hai

    • @Hrishav-iq7uy
      @Hrishav-iq7uy หลายเดือนก่อน

      kyuki str me value reassign hua h

  • @Shafaaa0724
    @Shafaaa0724 7 หลายเดือนก่อน +21

    Any 6th class student like me?

    • @dhanavathraghu8216
      @dhanavathraghu8216 7 หลายเดือนก่อน +8

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

    • @mayankkushwaha-jh7wm
      @mayankkushwaha-jh7wm 7 หลายเดือนก่อน +2

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

    • @pranavtawale6891
      @pranavtawale6891 7 หลายเดือนก่อน +9

      Are khelo masti Karo itani bhi kay jaldi he😅😅

    • @anuragdabral8959
      @anuragdabral8959 7 หลายเดือนก่อน

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

    • @shreeshanthashorts
      @shreeshanthashorts 7 หลายเดือนก่อน +7

      Me to LKG ka hu

  • @Mr_toxic1212
    @Mr_toxic1212 4 หลายเดือนก่อน

    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

  • @vedikasharma4212
    @vedikasharma4212 11 หลายเดือนก่อน +3

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

    • @nithamirpur5
      @nithamirpur5 11 หลายเดือนก่อน

      1st year. ??

    • @vedikasharma4212
      @vedikasharma4212 11 หลายเดือนก่อน

      @@nithamirpur5 Bro class 11(school)

    • @nithamirpur5
      @nithamirpur5 11 หลายเดือนก่อน

      @@vedikasharma4212 great 👍

  • @muhammadshahbaz5021
    @muhammadshahbaz5021 11 หลายเดือนก่อน

    Maim me aapki sari videos dekhta hu me O level course kar Raha hu AAP ke samjhane ka tarika bahut accha hai ❤❤❤❤❤❤

  • @kuchv6564
    @kuchv6564 11 หลายเดือนก่อน +298

    Electrical koi ye dekh raha to like kre

    • @kuchv6564
      @kuchv6564 11 หลายเดือนก่อน +5

      @@nithamirpur5 passout hu cec college Jharkhand

    • @kuchv6564
      @kuchv6564 11 หลายเดือนก่อน +2

      @@nithamirpur5 sayad tm to nit se ho

    • @syed_wahid
      @syed_wahid 11 หลายเดือนก่อน +3

      Electrical Kashmir University 6th sem

    • @nithamirpur5
      @nithamirpur5 11 หลายเดือนก่อน

      @@kuchv6564 hn jii

    • @syed_wahid
      @syed_wahid 11 หลายเดือนก่อน +1

      @@HimanakanKashyap well done 👍 bro rise and shine ✨

  • @Worldsportsicon
    @Worldsportsicon 2 หลายเดือนก่อน +1

    I have no words to say for appreciation for u .osm lecture.

  • @ckrajatff5812
    @ckrajatff5812 5 หลายเดือนก่อน +19

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

  • @pankaj.8602
    @pankaj.8602 2 หลายเดือนก่อน

    Shraddha you really earned my respect...

  • @raj422
    @raj422 6 หลายเดือนก่อน +12

    Koi civil engineering wala bhi hai kya 😅😅😅

    • @cX77-w7j
      @cX77-w7j 3 หลายเดือนก่อน

      Ja dihadi laga

    • @vrmannanvlogs4143
      @vrmannanvlogs4143 3 หลายเดือนก่อน +1

      Ja bete leveling kar Jake 😂

    • @Vishhhu30
      @Vishhhu30 2 หลายเดือนก่อน

      😂😂😂

  • @adityaralhan1154
    @adityaralhan1154 6 หลายเดือนก่อน

    A very informative lecture.Thankyou Shradha didi😃🙏

  • @VaidikThakur-kd7do
    @VaidikThakur-kd7do 4 หลายเดือนก่อน +3

    Class 11 attendance button

    • @mrgamer-mk4wi
      @mrgamer-mk4wi 2 หลายเดือนก่อน

      I'm in class 8 😁

    • @keshavgodani6649
      @keshavgodani6649 2 หลายเดือนก่อน

      @@mrgamer-mk4wiI am in class 2

  • @yashgaming0992
    @yashgaming0992 2 หลายเดือนก่อน

    Practicle question solve successfully in first attempt
    Thank you shradha di.👍❤

  • @RajendraSingh76675
    @RajendraSingh76675 หลายเดือนก่อน +4

    Me from class 7 😅😃

  • @vedantkanade-jq2nz
    @vedantkanade-jq2nz 7 หลายเดือนก่อน +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!!
    ❤❤❤❤❤

  • @Quick.Recipee
    @Quick.Recipee 8 หลายเดือนก่อน +10

    Bsc cs or it anyone 😅 ????

    • @pushkar_jaju
      @pushkar_jaju 7 หลายเดือนก่อน +1

      I'm bsc cs student 🙋‍♂️

    • @Randomnoobishere
      @Randomnoobishere 7 หลายเดือนก่อน +1

      Im going to bsc cs soon

    • @armanDeep-gh7lj
      @armanDeep-gh7lj 7 หลายเดือนก่อน +1

      I am in 10 th bro

    • @snowygirl8043
      @snowygirl8043 6 หลายเดือนก่อน

      I'm IT student

    • @pushkar_jaju
      @pushkar_jaju 6 หลายเดือนก่อน

      @@snowygirl8043 hii me too

  • @BaltiBulbul
    @BaltiBulbul 9 หลายเดือนก่อน

    love you mam kasam sa kia samjata hy
    ma na pura youtube chan mara hy ap jasa koi python nahi samjta , love you and god bless you

  • @omkarkanemoni2162
    @omkarkanemoni2162 3 หลายเดือนก่อน +1

    Happy Navratri Happy Coding didi

  • @anish0765
    @anish0765 หลายเดือนก่อน

    53:34 answer
    Using if - elif
    if a >= b and a >= c and a >= d:
    print("first number is largest", a)
    elif b >= c and b >= d and b >= a:
    print("second number islargest", b)
    elif c >= d and c >= a and c >= b:
    print("third number is largest", c)
    elif d >= a and d >= b and d >= c:
    print("fourth number is largest", d)

  • @prashikkoche786
    @prashikkoche786 5 หลายเดือนก่อน +1

    value=int(input("Enter a number: "))
    if(value % 2 == 0):
    print("Num is Even")
    else:
    print("Num is Odd")

  • @Tech-tonic634
    @Tech-tonic634 8 หลายเดือนก่อน

    Didi sabse achhi teacher ho!!!

  • @abhishekyadav2752
    @abhishekyadav2752 11 หลายเดือนก่อน

    Abhi aayega na asli mazaa...😅😅❤❤ Thanks maam

  • @GIGACHAD0FFICIAL
    @GIGACHAD0FFICIAL 4 หลายเดือนก่อน +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")

  • @asrafulsheikh1860
    @asrafulsheikh1860 5 หลายเดือนก่อน

    Didi, I am from Bangladesh. But I am very happy because your class have helped me to learn python very easily.🧡🧡

  • @Sarcasticak02
    @Sarcasticak02 4 หลายเดือนก่อน

    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 ):
    print("second number is largest", b)
    elif(c >= d):
    print("enter third number", c)
    else:
    print("fourth number is largest", d)