Lecture 2 : Strings & Conditional Statements | Python Full Course

แชร์
ฝัง
  • เผยแพร่เมื่อ 24 ก.ย. 2024
  • This lecture was made with a lot of love❤️
    Notes : drive.google.c...
    ✨ Instagram : / shradhakhapra
    ✨ LinkedIn : / shradha-khapra

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

  • @BilalNoor-df4dq
    @BilalNoor-df4dq 7 หลายเดือนก่อน +245

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

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

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

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

      are those bullies?

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

      @@teclues3893 he meant bad teachers

    • @user-mouli1897
      @user-mouli1897 24 วันที่ผ่านมา

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

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

    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?

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

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

      @@ADIATHASANRIYAD THANK YOU FOR THE TIPS☺

    • @kingsubrowstatus
      @kingsubrowstatus 27 วันที่ผ่านมา

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

    • @terminatorgaming7426
      @terminatorgaming7426 2 วันที่ผ่านมา

      @@ADIATHASANRIYAD thank you so much bro

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

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

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

    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

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

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

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

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

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

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

      Dsa with py

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

      @@parthsojitra9221 dsa with python

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

      dsa with python

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

      DSA with PYTHON ❤

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

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

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

    Ye language kis kis ka first language hai

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

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

      Nice😊

    • @NsrinivasReddy-kt8js
      @NsrinivasReddy-kt8js 2 หลายเดือนก่อน +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 11 วันที่ผ่านมา

      ​@@spaceasphalt9510eat 5star do nothing

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

  • @sanankhan7752
    @sanankhan7752 28 วันที่ผ่านมา +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)

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

  • @TosheenFiroz
    @TosheenFiroz 6 วันที่ผ่านมา +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 4 หลายเดือนก่อน +6

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

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

      invalid syntax😊

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

      Successfully erroe

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

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

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

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

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

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

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

    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😅

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

      wrong

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

      ​@@subhadipmondal230whats wrong with this code?

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

      It's right

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

      ​@@ashakumawat4610 1st logical statement is wrng ig

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

      Wonderful brother!.

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

    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!

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

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

  • @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 .🙏🙏

  • @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

  • @HeadCountKFHeadCountKF
    @HeadCountKFHeadCountKF 3 วันที่ผ่านมา

    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

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

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

  • @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")

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

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

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

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

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

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

    Thanks mam to teach us ❤😊 30:52

  • @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)

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

    Mam next language C++ full course please ❤

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

    # 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 ')

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

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

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

    53:48
    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 forth number :"))
    if(a >= b and a >= c and a >=d):
    print("first number is greatest",a)
    elif(b >= a and b >= c and b >=d):
    print("second number is greatest",b)
    elif(c >=a and c >=b and c >=d):
    print("third number is greatest",c)
    else:
    print("forth number is greatest",d)

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

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

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

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

  • @killerdestiny786
    @killerdestiny786 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)

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

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

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

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

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

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

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

    i love her method of teaching

  • @jb1982shantanu
    @jb1982shantanu 10 วันที่ผ่านมา

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

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

    You are a brilliant Teacher . God bless you.

  • @chandramohantiwari8024
    @chandramohantiwari8024 2 ชั่วโมงที่ผ่านมา

    Code for finding largest number from 4 values
    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("the first number is largest :", a)
    elif(b >= c and b >= d):
    print("the second number is largest :", b)
    elif(c >= d):
    print("the third number is largest :", c)
    else:
    print("the fourth number is largest :", d)

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

    Thankyou maam
    Please give a roadmap for machine learning

  • @atharvsatghare4943
    @atharvsatghare4943 9 วันที่ผ่านมา

    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)

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

    This actually helped , Thankyou MAM for making the series

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

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

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

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

    a = int(input("Please enter a number"))
    b = int(input("Please enter a number"))
    c = int(input("Please enter a number"))
    if (a>b and a>c):
    print(a)
    print("a is the largest number")
    elif(b>c):
    print(b)
    print("b is the largest number")
    else:
    print(c)
    print("c is the graetest number")

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

    Need DSA full Course ❤

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

      Yes me also complete pytho dsa

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

      dsa?

  • @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.")

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

      gud its correct

  • @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 ❤❤

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

      me too

  • @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")

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

    BCA Student are here guysss❤❤❤❤

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

      Me also

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

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

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

    Escape squence characters
    str1 ="This is a String,
    We are creting in phython "
    print(str1)
    Conctenations:
    str1 ="Tayyab"
    str2="ALi"
    print(str1+str2)
    str="tayyab ali"
    chr=str[0]
    print(chr)
    ::::::::::::::::::::::::::::::::::
    FIRST FUNCTION;
    str ="I am styding phuthon from apna college"
    print(str.endswith("egh"))
    SECOND FUNCTION:
    str ="i am styding phuthon from apna college"
    print(str.capitalize())
    THIRD FUNCTION
    str ="i am styding phuthon from apna college"
    print(str.replace("phuthon","javascript"))
    FOURTH FUCNTION:
    str ="i am styding phuthon from apna college"
    print(str.find("am"))
    FIFTH FUCTION:
    str ="i am from styding phuthon from apna college"
    print(str.count("from"))
    practice:
    name=input("enter youre name: ")
    print("length of a string:",len(name))
    practice:
    str="Hye am the $ dollor symbol $ 99.99"
    print (str.count("$"))
    ::::::::::::::::::::::::::::::::::
    CONDITIONAL STATEMENTS:
    marks=int(input("Enter the Student Marks : " ))
    if(marks>=90):
    grade="A"
    elif(marks>=80 and marks =70 and marks < 80):
    grade="C"
    else:
    grade ="D"
    print("Grade Of the Student -->",grade)
    ::::::::::::::::::::::::::::::::::::::::::::::::::::
    age = int(input("Enter the Ge of a Driver: "))
    if(age>=18):
    if(age>=80):
    print("cannot Drive")
    else:
    print("can Drive")
    else:
    print('cannot Drive')
    ::::::::;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
    PRACTICE !:
    num= int(input("Enter the numbers :"))
    if(num % 2 == 0):
    print("The number is a Even Number:")
    else:
    print("The number is odd")
    """"""""""""""""""""""""""""""""""
    WAP to find the gratest number entered by the users:
    PRoGRam:
    a= int(input("Enter the First numbers :"))
    b= int(input("Enter the Second numbers :"))
    c= int(input("Enter the Third numbers :"))
    if(a>=b and a>=c):
    print("First numbe is largest: ",a)
    elif(b>=c):
    print("Second number is largest: ",b)
    else:
    print("Third number id largest: ",c)
    """""""""""""""""'''''''""""""""""""""""
    a= int(input("Enter the First numbers :"))
    b= int(input("Enter the Second numbers :"))
    c= int(input("Enter the Third numbers :"))
    d= int(input("Enter the Fourth numbers :"))
    if(a>=b and a>=c and a>=d):
    print("First numbe is largest: ",a)
    elif(b>=c):
    print("Second number is largest: ",b)
    elif(c>=d):
    print("Third number ka bara hy:" ,c)
    else:
    print("Fourth number id largest: ",c)
    :"""""""""""""""""""""""""""""
    check they are multiple of or Not ????
    program:
    x= int(input("Enter the First numbers :"))
    if(x % 7 ==0):
    print("multiple of 7")
    else:
    print("not a multiple of a 7")

  • @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

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

    Largest number from 4 numbers:
    a=int(input("enter first no.:"))
    b=int(input("enter second no.:"))
    c=int(input("enter third no.:"))
    d=int(input("enter fourth no.:"))
    if(a>d):
    if(a>c):
    if(a>b):
    print("1st grreatest nummber",a)
    else:
    print("2nd is the greatest number",b)
    else:
    print("3rd is the greatest number",c)
    else:
    print("4th is the greatest number",d)

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

    Kaun kaun B tech krne se phle dekh Raha h

  • @bhaktu29
    @bhaktu29 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(a)
    elif(b >= a and b >= c and b >= d):
    print(b)
    elif(c >= a and c >= b and c >= d):
    print(c)
    else:
    print(d)
    it is the write code of Maximum of
    4 numbers

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

    Mca students attendance here✌️✌️

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

      😊 which college you do..?

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

      @@soumalyapal8157 soa, bhubaneswar.....ur

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

      OMG MCA me yahi padh rahe abhi tak ...😱

    • @BarshaNayak-m4l
      @BarshaNayak-m4l 10 วันที่ผ่านมา

      Am imca student 😅

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

    Marks= int(input("enter student marks"))
    if(Marks >= 90):
    print("grad A")
    elif(Marks>=70):
    print("grade B")
    elif(Marks>=50):
    print("grade C")
    elif(Marks>=30):
    print("grade D")
    else:
    print("grade F")

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

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

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

    a = int(input("Enter the first number = "))
    b = int(input("Enter the Second number = "))
    c = int(input("Enter the Third number = "))
    d = int(input("Enter the fourth number = "))
    if (a >= b and b >= c):
    print(" the first number is Largest",a)
    elif(b >= c):
    print("Second Number is largest",b)
    elif (c >= d):
    print("Third is largest",c)
    else:
    print("Fourth is largest",d)

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

    Koi civil engineering wala bhi hai kya 😅😅😅

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

      😂

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

    num1 = int(input("write any number you like :-"))
    num2 = int(input("choose second num :- "))
    num3 = int(input("select third num :- "))
    num4 = int(input(" selct fouth num :-"))
    if(num1 >= num2 and num1 >= num3 and num1 >= num4):
    print (num1)
    elif(num2 >= num3 >= num4):
    print(num2)
    elif(num3 >= num4):
    print(num3)
    else:
    print (num4)

  • @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 👍

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

    One playlist on ReactJs

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

    Any 6th class student like me?

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

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

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

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

    great ☺miss SHRADHA , from Pakistan

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

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

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

    Please ek playlist on ReactJs

  • @PythonProject-w8v
    @PythonProject-w8v 11 วันที่ผ่านมา +1

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

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

    Thank ❤I love your videos from village

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

    This is the best lecture ever

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

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

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

    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

  • @BhupinderSingh-fh9mx
    @BhupinderSingh-fh9mx 2 หลายเดือนก่อน

    a = int(input("enter the value: "))
    b = int(input("enter the value: "))
    c = int(input("enter the value: "))
    d = int(input("enter the value: "))
    if(a >= b and c and a >= c and d ):
    print(a ,"is greatest")
    elif(b >= a and c and b >= c and d):
    print(b ,"is greatest")
    elif(c >= a and b and c >= b and d):
    print(c ,"is greatest")
    else:
    print(d ,"is greatest")

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

    Bsc cs or it anyone 😅 ????

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

      I'm bsc cs student 🙋‍♂️

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

      Im going to bsc cs soon

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

      I am in 10 th bro

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

      I'm IT student

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

      @@snowygirl8043 hii me too

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

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

  • @fitnessclip2977
    @fitnessclip2977 7 วันที่ผ่านมา

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

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

    grade= int(input("Enter your markes: "))
    if grade >= 90:
    print("Your Grade is A")
    elif grade >= 80:
    print("Your Grade is B ")
    elif grade >= 70:
    print("Your Grade is C")
    else:
    print("You are ढ ")

  • @Fearless_Gaming-12
    @Fearless_Gaming-12 16 วันที่ผ่านมา

    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

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

    a = int(input("1st :"))
    b = int(input("2nd :"))
    c = int(input("3rd :"))
    d = int(input("4th :"))
    if(a>b and a>b and a>d):
    print(a ,"is largest")
    elif(b>c and c>d):
    print(b ," is largest")
    elif(c>d):
    print(c , "is the largest")
    else:
    print(d, "is the largest number")
    # for 4 numbers which is largest

  • @M.Junaid-mz8tw
    @M.Junaid-mz8tw 3 หลายเดือนก่อน

    Home work
    a=int(input("enter no 1:"))
    b=int(input("enter no 2:"))
    c=int(input("enter no 3:"))
    d=int(input("enter no 4:"))
    if(a > b and a > c):
    print("N1",a)
    elif(b>c and b>d):
    print("N2",b)
    elif(c>d):
    print("N3",c)
    else:
    print("N4",d)

  • @TUFgamingofficial
    @TUFgamingofficial 14 วันที่ผ่านมา

    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

  • @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")

  • @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!!
    ❤❤❤❤❤

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

    53:49
    a = int(input("Enter num1: "))
    b = int(input("Enter num2: "))
    c = int(input("Enter num3: "))
    d = int(input("Enter num4: "))
    if(a >= b and a >= c and a >= d):
    print("num1 is greatest",a)
    elif(b >= c and b >=d):
    print("num2 is greatest",b)
    elif(c >= d):
    print("num3 is greatest",c)
    else:
    print("num4 is greatest",d)

  • @Indiandragon
    @Indiandragon 9 วันที่ผ่านมา

    HW - Greatest number in given 4 numbers - CODE:
    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):
    great = a
    elif(b >= c and b >= d):
    great = b
    elif(c >= d):
    great = c
    else:
    great = d
    print("Greatest Number is =", great)

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

    For the HW Question: WAP for greatest of 4
    a = int(input('enter your 1st number: '))
    b = int(input('enter your 2nd number: '))
    c = int(input('enter your 3rd number: '))
    d = int(input('enter your 4th number: '))
    if(a>=b and a>c or a>d):
    print("a is the greatest number.")
    elif(b>=c and b>d):
    print("b is the greatest number.")
    elif(c>=d and c>a):
    print("c is the greatest number.")
    else:
    print("d is the greatest number")

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

    number1=int(input("enter first no"))
    number2=int(input("enter second no"))
    number3=int(input("enter third no"))
    number4=int(input("enter fourth no"))
    if(number1>number2 and number1>number3 and number1>number4):
    print("number1 is greater")
    elseif(number2>number3 and number2>number4):
    print("number 2 is geater")
    elseif(number3>number4):
    print("number 3 is greater")
    else:
    print("number 4 is greater")

  • @suman1757
    @suman1757 2 วันที่ผ่านมา

    I try to find the teacher who teaches python easily and I find this channel

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

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

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

    Highest number in 4 numbers:
    a=int(input("Enter frist number: "))
    b=int(input("Enter second number: "))
    c=int(input("Enter thard number: "))
    d=int(input("Enter forth number: "))
    if(a>=b and a>=c and a>=d):
    print("The largest number is %s." %a)
    elif(b>=c and b>=d):
    print("The largest number is %s." % b)
    elif(c>=d):
    print("The largest number is %s." % c)
    else:
    print("The largest number is %s." % d)

  • @esakhan-ul1pw
    @esakhan-ul1pw 17 วันที่ผ่านมา

    Q1:
    num=int(input("Enter your number:"))
    if(num%2==0):
    print("Even")
    else:
    print("Odd")
    Q2:
    num1=int(input("Enter your 1st number:"))
    num2=int(input("Enter your 1st number:"))
    num3=int(input("Enter your 1st number:"))
    if(num1>num2 and num1>num3):
    print("num1 is greater than num2 and num3")
    elif(num2>num1 and num2>num3):
    print("num2 is greater than num1 and num3")
    else:
    print("num3 is greater than num1 and num2")
    Q3:
    num=int(input("Enter your number:"))
    if(num%7==0):
    print("Multiple of 7")
    else:
    print("Not")

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

    Q. wap to find gretest of 4 number enterd by the user.
    a = int(input("enter first number:"))
    b = int(input("enter second number:"))
    c = int(input("enter thirdnumber:"))
    d = int(input("enter forth number:"))
    if( a>=b and a>=c and a>=d):
    print("largest number is -> ",a )
    elif( b>=a and b>=c and b>=d):
    print("lagrest number is -> ",b)
    elif( c>=a and c>=b and c>=d):
    print("largest number is -> ",c)
    else:
    print("largest number is -> ",d)

  • @HarshYadav-hj8ft
    @HarshYadav-hj8ft 2 หลายเดือนก่อน

    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.

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

    # Que 2 :- WAP to find the greatest of three number enter by the user.
    a = 67
    b = 31
    c = 43
    if(a > b and a > c):
    print("A :- Biggest")
    if(b > c):
    print("B Greater Than")
    else:
    print("c")
    elif(b > c):
    print("B Greater Than")
    else:
    print("c")
    IS IT CORRECT

  • @SimranSharma-i8i
    @SimranSharma-i8i 21 วันที่ผ่านมา

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

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

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

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

      Me too😅😅