Python Booleans (Comparison & Logical Operators) #6

Sdílet
Vložit
  • čas přidán 13. 09. 2024

Komentáře • 96

  • @programizstudios
    @programizstudios  Před 2 lety +2

    🔥Finding it Damn Hard to Understand Python?
    Learn to code-the right way-with interactive lessons, quizzes & challenges. Build a strong programming base; it's IMPORTANT!
    Try Programiz PRO for Free: bit.ly/interactive-py

  • @Dreamer_07
    @Dreamer_07 Před 2 lety +10

    your teaching style is so simple and clear. Understood everything.

  • @prathmeshborse2898
    @prathmeshborse2898 Před 4 lety +37

    a = 'Thank '
    b =' you'
    Print(a+b)
    #Thank you
    😊

    • @letstry2854
      @letstry2854 Před 4 lety +5

      In Print () function, p is in lowercase case nah...?

    • @prathmeshborse2898
      @prathmeshborse2898 Před 4 lety

      @@letstry2854 it doesn't matter i thik!!

    • @prathmeshborse2898
      @prathmeshborse2898 Před 4 lety +4

      @@letstry2854 no p in print function is lowercase is necessary

    • @letstry2854
      @letstry2854 Před 4 lety +1

      @@prathmeshborse2898 as I thought. Thank you bro for your kind response 😃

    • @lastonline2614
      @lastonline2614 Před 3 lety +2

      @@prathmeshborse2898 yes it does as python is a case sensitive language

  • @merfu.uighur5996
    @merfu.uighur5996 Před 4 lety +12

    I love your website,its beautiful!so clear!

  • @Farhan_2219
    @Farhan_2219 Před 5 měsíci

    Your teaching method is super impressive not so fast and also not so slow.
    Exercise answer:
    1. False
    2. True
    3. False
    4. False

  • @Andre-ih5ig
    @Andre-ih5ig Před 3 lety +1

    I cant believe this channel doesn't have more likes and subs

  • @roopant8999
    @roopant8999 Před 3 lety +4

    hi bro, how are you? The way you are teaching is easy to understand and extremely good. I got more interest in python by watching your videos. Thanks for posting videos!

  • @tanishkamane2363
    @tanishkamane2363 Před 3 lety +5

    Sir please make series on c, c++ , java and c# programming language
    You teach really awesome 👍🏻👍🏻👍🏻

  • @kushal-shaw-pvt
    @kushal-shaw-pvt Před 4 lety +6

    8:27 answer 1 false 2 true 3 false 4 false

  • @jademalynn
    @jademalynn Před 3 lety

    Loving Punit! You make everything so easy to understand!

  • @divyaahirkar9183
    @divyaahirkar9183 Před 3 lety +2

    thanks..............for such a great explanation

  • @jai7326
    @jai7326 Před 10 měsíci

    Thank you bro, you lowkey taught me everything. Big ups man, keep it up!

  • @juliamath7411
    @juliamath7411 Před 7 měsíci

    اسطورتي 😭🤍🤍🤍🤍🤍🤍🤍🤍🤍

  • @harikrishanankurup8956

    Better than any other online classes

  • @jeriarios6718
    @jeriarios6718 Před 3 lety +2

    Thank you so much :>
    I enjoyed your video

  • @mohammedsaifali8010
    @mohammedsaifali8010 Před 4 lety +3

    when will you upload the c programming language tutorial
    and which is perfect book to learn c programming language for beginners
    and i appreciate the hard work of your team #programiz

  • @sciencesconnectus7001
    @sciencesconnectus7001 Před 3 lety

    Your explanation is very interesting

  • @gineecorp3803
    @gineecorp3803 Před 4 lety +5

    The answer of the section programming task is
    L false
    2 true
    3 false
    4 false

  • @chwathiii381
    @chwathiii381 Před 2 lety

    excellent explanation...please give descn making controls full tutorial class..

  • @AliKazmi-ej8qw
    @AliKazmi-ej8qw Před 6 měsíci

    The output is print(1: language==Python)

  • @aswingiduturi2221
    @aswingiduturi2221 Před 3 lety

    Really awesome teaching 👍👍

  • @-A-VikasBalaga
    @-A-VikasBalaga Před 2 lety

    Some times the online python compiler is not working properly,it is showing incorrect results,so after refreshing the page it works properly,So please make sure to rectify it, Thanks for the videos!!

  • @gotetilakshman6770
    @gotetilakshman6770 Před 3 lety +3

    1. python == python
    2.True
    3.False
    4.False(age is >= 18 is True ,but language is not equal to java because we use and operator)You said that and takes two values as an True when both are True,if any one is False that statement becomes False

    • @anandshankarm777
      @anandshankarm777 Před 3 lety +5

      1. is "False"
      Because python is case sensitive .
      In language the letter "P" is in upper case
      But in print function the letter "p" is lower case.
      So they both can't be equal .
      Happy Learning n Have a good day :)

  • @pasanmadhubhashana9893
    @pasanmadhubhashana9893 Před 3 lety +1

    good job

  • @sergitorresbueno8908
    @sergitorresbueno8908 Před 2 lety

    I love this guy!

  • @Fritzie345
    @Fritzie345 Před 2 lety

    Nice video but FYI your website links this video on the if / else page instead of the correct video.

  • @varshivssiri8798
    @varshivssiri8798 Před 3 lety +1

    a='thanks'
    b='a lot '
    Print ("a+b")
    Thanks a lot

    • @pauloaalcantra1187
      @pauloaalcantra1187 Před 3 lety

      The output would be:
      a+b
      If it is desired to get 'Thanks a lot', so the code should be:
      a = 'Thanks'
      b = ' a lot' #(note: it must be put a space before 'a' of 'a lot')
      print(a + b) #(note: it is desired the content of sum, so it has to be written without quotes)
      My best regards,
      and to keep studying

  • @naagieee4114
    @naagieee4114 Před 2 lety

    1.True
    2.True
    3.False
    4.False
    Thankyou soo much sir u r way of explaining is too good

  • @oyevicuu
    @oyevicuu Před 3 lety +1

    sir thanks
    your python compiler is so good
    A= love you
    B= SIR
    print = (A + B )
    love you sir

    • @pauloaalcantra1187
      @pauloaalcantra1187 Před 3 lety +1

      When it comes about strings, the quotes are required.
      The code should be:
      A= 'love you'
      B= 'SIR'
      print = (A + ' ' + B)
      My best regards
      to keep learning

    • @randominfo8064
      @randominfo8064 Před 3 lety

      @@pauloaalcantra1187 you are right

  • @GL-Broz
    @GL-Broz Před 2 lety +2

    1.True
    2.True
    3.False
    4.False

  • @kushal-shaw-pvt
    @kushal-shaw-pvt Před 4 lety +1

    Please make a ide for python offline please

  • @khemtiwari5078
    @khemtiwari5078 Před 2 lety

    sir the question you give to do the first output is TRUE but in github the output is FALSE ..........

  • @strangergaming7188
    @strangergaming7188 Před 2 lety

    sir plsss reply,how first one in programming task will becomem false, when i tested it by coding it showed true.

  • @almaan.7202
    @almaan.7202 Před 4 lety +2

    When you will upload loops because I don't know

    • @Slink1
      @Slink1 Před 4 lety

      www.programiz.com/python-programming/for-loop

  • @preetisinghchundawat4548
    @preetisinghchundawat4548 Před 3 lety +2

    1 True
    2 True
    3 False
    4 False

  • @tarabelbase8120
    @tarabelbase8120 Před 4 lety

    Hey Brother can you Teach dynamic Memory Allocation In C ...I know the syntax but I can't understand Deeply...

  • @wilsonpereira8199
    @wilsonpereira8199 Před 4 lety

    pls make sure you increase your audio volume

  • @birajbiswas2
    @birajbiswas2 Před 2 lety +1

    Time: 8.26
    1. False
    2. True
    3. False
    4. False

    • @strangergaming7188
      @strangergaming7188 Před 2 lety

      how first one is false
      can i know plsss

    • @birajbiswas2
      @birajbiswas2 Před 2 lety

      @@strangergaming7188 python code is case(Capital letter and small letter) sensitive .( P and p is not same in case of python)

  • @harish0000
    @harish0000 Před 3 lety

    Please also alow us to save our code in python compiler which is on your site

  • @srynolwl3405
    @srynolwl3405 Před 4 lety

    i know your website from babal
    Good job!

  • @saifurrehman6756
    @saifurrehman6756 Před 3 lety

    Hello! Thanks for the nice course. Very easy to understand for beginners like me. However, what does triple quotes means (''')?

    • @programizstudios
      @programizstudios  Před 3 lety +7

      Triple single quotes and triple quote quotes are also used for creating strings. For example,
      str1 = """Hey there!"""
      They are usually used for creating multiline strings.
      str2 = """Hey there!
      How are you doing?"""

    • @saifurrehman6756
      @saifurrehman6756 Před 3 lety +1

      Thanks a million.

  • @ppirsjsh505
    @ppirsjsh505 Před 2 lety

    thank you so much for your tutorial.
    may I ask something, Sir
    if I would like to write
    a or (b and c), is it valid to put on parantheses? or we need another method?
    thanks in advance

  • @jafecc
    @jafecc Před měsícem

    The answer to this task is:
    1. False
    2. True
    3. False
    4. False

  • @sureshvarthya2250
    @sureshvarthya2250 Před 2 lety

    1-False(python==Python)------#p!=P
    2-True
    3-False
    4-False

  • @majidalich2947
    @majidalich2947 Před 2 lety +1

    1. False
    2. True
    3. False
    4. False

  • @manjunathansakthivel4922

    1 True
    2 True
    3 Flase
    4 Flase

  • @KISHOREKS-m3t
    @KISHOREKS-m3t Před rokem

    1. True
    2. True
    3. False
    4. False
    >

  • @Legend-gu8uz
    @Legend-gu8uz Před 3 lety

    1. True
    2. True
    3. False
    Traceback (most recent call last):
    File "", line 7, in
    NameError: name 'java' is not defined

    • @BrokeCanadian
      @BrokeCanadian Před 3 lety

      You wrote: *language == Java)*
      You should have written: *language == "Java")*
      Java is a string, so it should always be written in quotation marks or you will get an error message.

  • @eraiadhavan_onlineclass8560

    1. False
    2. True
    3. False
    4. False
    Is the ans

  • @sreepavansai5661
    @sreepavansai5661 Před 3 lety

    sir, i am studying 12th class.
    where do i get questions to do programming

  • @Project.i
    @Project.i Před 5 měsíci

    1. true
    2. true
    3. false
    4.false

    • @Project.i
      @Project.i Před 5 měsíci

      sorry the 1. is false because in the language variable the Python has capital P and in print function it has lower case p

  • @kanarajitha5739
    @kanarajitha5739 Před rokem

    Answer is
    True
    True
    False
    False

  • @arslanadrees5626
    @arslanadrees5626 Před 3 lety

    first two output are true
    and last two output are false

  • @lakshanj.kumara7648
    @lakshanj.kumara7648 Před rokem +1

    1 False
    2 True
    3 False
    4 False

  • @chetanpawar4243
    @chetanpawar4243 Před 3 lety

    false, true, false, false 👍

  • @kittygaming4393
    @kittygaming4393 Před 2 lety

    True
    True
    False
    False

  • @srynolwl3405
    @srynolwl3405 Před 4 lety

    nepali hoina

  • @ASITGOYAL_COMMONMAN
    @ASITGOYAL_COMMONMAN Před 2 lety

    sir your answer is wrong

  • @ntejaswi7708
    @ntejaswi7708 Před 3 lety

    False
    True
    False
    False

  • @prasannapabba914
    @prasannapabba914 Před 3 lety +1

    1.True
    2.True
    3.False
    4.False

  • @lastonline2614
    @lastonline2614 Před 3 lety

    1. False
    2. True
    3. False
    4. False

  • @soumyadeepghosh4428
    @soumyadeepghosh4428 Před rokem

    1. True
    2. True
    3. False
    4. False

  • @aritradey7189
    @aritradey7189 Před 2 lety

    1.True
    2.True
    3.False
    4.False

  • @theonlymaster9374
    @theonlymaster9374 Před 2 lety

    1. False
    2. True
    3. False
    4. False