Python Tutorial for Beginners 10 - Boolean, Comparison Operators and Logical Operators in Python

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

ความคิดเห็น • 12

  • @ProgrammingKnowledge
    @ProgrammingKnowledge  6 ปีที่แล้ว +3

    Gist of all the commands I used in this video gist.github.com/pknowledge/842f5cc5a2409297e4668c01283403c2

  • @f_x9771
    @f_x9771 6 ปีที่แล้ว +3

    Hello my brother! I just wanted to stop by and say thank you for such great videos! For many beginners on Python, this is an excellent series of videos. In detail, well explained, to the point. Thank you my brother, may you continue to upload more great videos of Python!

  • @hassannittofornah6403
    @hassannittofornah6403 2 ปีที่แล้ว

    your python tutorials are the best , keep it! On a scale from 1 to 10, you're an 11.

  • @ankitdubey926
    @ankitdubey926 6 ปีที่แล้ว +5

    I've been following your python tutorials and you are really doing a great job on these . I just want to know whether you will be covering tkinter and matplotlib modules during these tutorials. If not i request you to cover those topics as I could not find a good online material for those. Anyway man keep up the great work and Thanks!!

  • @mezbahsaklain2009
    @mezbahsaklain2009 4 ปีที่แล้ว

    Bro I just love you
    Even I am following this in 2020 its a great help

  • @HarshaMaddur
    @HarshaMaddur 5 ปีที่แล้ว +1

    Why are we using console instead of terminal? What is the difference between two of them??

    • @thewild2334
      @thewild2334 5 ปีที่แล้ว

      they are the same

  • @sauravkumar-fj7oc
    @sauravkumar-fj7oc 6 ปีที่แล้ว

    MST bro

  • @sahilparasher722
    @sahilparasher722 6 ปีที่แล้ว +1

    👍👍👍👍👍

  • @HarshaMaddur
    @HarshaMaddur 5 ปีที่แล้ว

    Why "isalnum" giving true for 'hello' as there is no numbers in 'hello'??

    • @himanshusinha2403
      @himanshusinha2403 4 ปีที่แล้ว

      because it checks for both alphabets and numbers

  • @pmanmusic4389
    @pmanmusic4389 4 ปีที่แล้ว

    Hello. Can someone help with the below task. I need to this code to return suitable password If answer is true (3 or more)
    user = input(" Enter your Password ")
    haveLength = "false"
    upCase = "false"
    lowCase = "false"
    haveNum = "false"
    true = 0
    #Answer true or false.
    haveLength = input(" Does your password contain atleast six characters(? ")
    true += 1
    print(haveLength)
    upCase = input(" Does the password entered contain upercase letter(s)? ")
    true += 1
    print(upCase)
    lowCase = input(" Does the your password include lowercase letters? ")
    true += 1
    print(lowCase)
    haveNum = input(" Does your password have contain numbers? ")
    true += 1
    print(haveNum)
    bool(true)
    if true >= 3:
    print(" This is a Suitable password" )
    else:
    print(" Try a more stronger password ")