If statements in Python are easy (if, elif, else) 🤔

แชร์
ฝัง
  • เผยแพร่เมื่อ 8 ก.ค. 2024
  • #python
    Python if elif else control flow
    00:00:00 if statements
    00:01:27 else statements
    00:02:19 elif statements
    00:04:22 exercise 1
    00:05:45 exercise 2
    00:06:37 booleans
    00:08:03 conclusion

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

  • @BroCodez
    @BroCodez  ปีที่แล้ว +62

    # if = Do some code IF condition is True
    # else = Do something else if above condition/s are False
    # ----------------------
    # EXAMPLE 1
    # ----------------------
    age = int(input("Enter your age: "))
    if age >= 100:
    print("You are too old to sign up")
    elif age >= 18:
    print("You are now signed up")
    elif age < 0:
    print("You haven't been born yet")
    else:
    print("You must be 18+ sign up")
    # ----------------------
    # EXAMPLE 2
    # ----------------------
    response = input("Do you want food (Y/N)?: ")
    if response == "Y":
    print("Have some food")
    else:
    print("No food for you!")
    # ----------------------
    # EXAMPLE 3
    # ----------------------
    name = input("Enter your name: ")
    if name == "":
    print("You did not enter your name!")
    else:
    print(f"Hello {name}")
    # ----------------------
    # EXAMPLE 4
    # ----------------------
    online = False
    if online :
    print("You are online")
    else:
    print("You are offline")

    • @hassanawdi3793
      @hassanawdi3793 ปีที่แล้ว

      In example 1 you could do
      if age>=18 and age

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

      Thank you

    • @michaelrobinson9952
      @michaelrobinson9952 8 วันที่ผ่านมา

      Man, you have taught me so much with these excellent videos, thank you.

  • @Tony.Vibez.
    @Tony.Vibez. 7 หลายเดือนก่อน +31

    Don’t stop making videos dude, ur one of the best teachers on here man 👏

  • @daydarasensei12
    @daydarasensei12 ปีที่แล้ว +92

    print("Thank you Bro! You're GOLD!")

    • @PDsChannel0112
      @PDsChannel0112 ปีที่แล้ว +10

      Thank you Bro! You're GOLD!

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

      Typeface error : line 1
      Idiot

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

      Python in youtube 😅​@@PDsChannel0112

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

      @@PDsChannel0112 print("you all are gold")

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

      @@sketchwithviren85you all are gold

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

    Best learning to code channel. Breaks it down so well.

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

    awesome explanations dude everything was clear and concise as a beginner, keep up the work subbed

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

    Just started watching this series and you are an amazing teacher, very easy to follow along and information is sticking pretty well. Not forgetting what I've learnt from you so far. Well done man, these lessons still helping people out a year after being uploaded

  • @anjali1977
    @anjali1977 ปีที่แล้ว +17

    Age=int(input ( " enter your age:"))
    If age 60:
    Print("your age is too old to marry")
    Else:
    Print("you both are perfect match each other")
    Even or odd
    Num=int(input ("enter your number:")
    If (num%2)==0:
    Print("number is even")
    Else:
    Print("number is odd")
    If statement
    Num=int(input("enter your number:")
    If ( num%2)==0

    • @johndank2209
      @johndank2209 ปีที่แล้ว +2

      shouldn't it be (Num%2)?

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

      yes
      @@johndank2209

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

      num = int(input("Enter your number:"))
      if (num%2) == 0:
      print("Number is even.")
      else:
      print("Number is odd.")

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

    NICELY DONE BRO...❤

  • @user-ly5we6xl4v
    @user-ly5we6xl4v 7 หลายเดือนก่อน

    NICELY DONE...❤

  • @MystikPrae
    @MystikPrae ปีที่แล้ว +4

    age=int(input("Enter your age: "))
    if age0:
    print("You aren't eligible to take driving license")
    elif age >18 and age60:
    print("Being a aged person, you aren't eligible for driving license")
    else:
    print("You haven't been born

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

    Free Lessons. love the vids u are the man

  • @TypicalVole2437
    @TypicalVole2437 ปีที่แล้ว

    This was easy to learn thank you

  • @thakre69
    @thakre69 ปีที่แล้ว +2

    bro you should have posted a community post asking people to "join me to learn python everyday" since you are updating the python playlist. But still thanks for the content and teaching sir, LOVE from INDIA🧡

  • @wmstram1
    @wmstram1 ปีที่แล้ว

    Watched it. Liked it.

  • @o9_169
    @o9_169 ปีที่แล้ว +2

    thank you guy on the internet

  • @jasonhammerle3582
    @jasonhammerle3582 ปีที่แล้ว

    🤘Great Content!

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

    Much appreciated

  • @v4mp1r3gurl6
    @v4mp1r3gurl6 ปีที่แล้ว

    Thank youuuuu this is very helpful

  • @user-fc8vj5dy9g
    @user-fc8vj5dy9g 7 หลายเดือนก่อน

    hey bro thanks for these awsome videos!

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

    Thanks this helps, am now subscribed

  • @kuveni4515
    @kuveni4515 6 วันที่ผ่านมา

    you are too good at this thank u sm

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

    Thank you very much, sir, I wish my lecturer were like you. please do another video on how to create multiple-choice quizzes.

  • @Afghanistanfutsalfans
    @Afghanistanfutsalfans ปีที่แล้ว

    fully explained!

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

    age = int(input("What is your age: "))
    if age >= 18:
    print("You are an adult")
    elif age == 17:
    print("come back next year")
    else:
    print("you are underage")

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

      do you have any idea how to get the input line to check the condition of if else statements

  • @3MILFOR3VER
    @3MILFOR3VER ปีที่แล้ว

    Love it bro!

  • @Dunith_Munasinghe
    @Dunith_Munasinghe ปีที่แล้ว

    Thank you ❤️

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

    best of best

  • @Artyon
    @Artyon ปีที่แล้ว

    Thank you Bro!

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

    Bro, you're the best.

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

    this helps me !

  • @frizz6779
    @frizz6779 ปีที่แล้ว

    Beo ur the best.

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

    thanks Bro

  • @sorrybabyx
    @sorrybabyx ปีที่แล้ว

    Thank you

  • @MohyDev
    @MohyDev ปีที่แล้ว +14

    I have always believed that education is the ultimate code to crack. Thanks to Bro Code, I have been able to unlock some of the most complex programming languages and computer science concepts with ease. Your videos have been instrumental in helping me level up my skills. So, from the bottom of my heart (and stack), thank you for being the best educational channel out there. Keep up the good work, Bro Code! Your dedication to educating the masses about programming languages and computer science has been truly inspiring. I would love to connect with you and learn more about your journey and how you became one of the best educational channels out there. again, thank you for being a constant source of knowledge and inspiration for us all. You're the real MVP, Most Valuable Programmer

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

      why is your comment there on every single video of brocode?

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

    thank you

  • @bekturasanbekov1979
    @bekturasanbekov1979 ปีที่แล้ว

    thx 4 vid bro !

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

    # 1 United States Dollar equals = 81.49 Indian Rupee
    enterrupee = float(input("How many dollars do you want to convert into rupee: "))
    onedollar = enterrupee * 81.55
    print("Answer is" + " " + str(onedollar))
    this is a dollar to rupee converter :>

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

    Love u so much ❤

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

    i love u bhai❤

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

    you are the goatttt

  • @narcissenasdepago5017
    @narcissenasdepago5017 ปีที่แล้ว

    Now it is clear

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

    in java you can write && as well as || in the condition to check if multiple conditions are met or if one or the other of multiple conditions are met. does python have that kind of thing as well or would you have to do something like nesting if statements?

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

    Thanks for sharing. I always recommend you to the crew at the YMCA comp club I run. How do you get that colorful terminal text?

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

    Bro can you do this series for html css and web programming. It would be so beneficial for me

    • @NotTheHeroStudios
      @NotTheHeroStudios ปีที่แล้ว

      he has one, full HTML / CSS and a javascript to go with it

    • @fatihaltun4763
      @fatihaltun4763 ปีที่แล้ว

      @@NotTheHeroStudios thanks for answer

  • @traderhacker-k346
    @traderhacker-k346 4 หลายเดือนก่อน

    Ure a goat straight to the point

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

    you can also do! elif age != 18
    print("You are to young!")

  • @phonezriend
    @phonezriend ปีที่แล้ว

    hey bro. Can you teach me depth first search and breadth first search in Python?

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

    🎩 off to Bro Code..

  • @naphtalifurst4045
    @naphtalifurst4045 ปีที่แล้ว

    hi bro
    can you explain how to program a pid control for a spike prime robot?
    thx
    p.s can you reply to my comment?

  • @NTC-SClydeDianzonMoreno
    @NTC-SClydeDianzonMoreno 3 หลายเดือนก่อน

    the one i've been searching not here
    what if it's something like
    if (num >12 - 15)
    print("the number is between 12-15")

  • @usuario._.
    @usuario._. 8 หลายเดือนก่อน

    print("Love u Bro Code☻♥")

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

    money = 288
    print("Current Money: 288$")
    x = int(input("How much money do you want to withdraw from a bank?"))
    if x > 288:
    print("You cant withdraw more money than you have.")
    if x

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

    2:02 thats what that website said💀

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

    print("u saved my life")

  • @muthyala724
    @muthyala724 ปีที่แล้ว

    print type(type(int))) what is input please tell me ?

    • @toastyt0es
      @toastyt0es ปีที่แล้ว

      Input is what allows you to add your age in this example.

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

    Here's some code I made with if/elif/else statements in python:
    import math
    children = int(input("How many children do you have?: "))
    if children == 0:
    print("Haven't you been married for 19 years?")
    elif children > 9:
    print("May God bless you!")
    elif children > 4:
    print("That's quite a few kids you got there.")
    elif children < 0:
    print("NO YOU DON'T!")
    else:
    print(f"Nice, I have {children} kids too!")

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

      Import math is useless

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

    bri saves the day

  • @baharehkjani6761
    @baharehkjani6761 ปีที่แล้ว

    PLEASE do function and return please please please

  • @alyxparr4913
    @alyxparr4913 ปีที่แล้ว

    My if/else code seems broken! I am still Bi-Polar!!!!! Help, please!!

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

    a = int(input("Enter a number: "))
    b = int(input("Enter a number: "))
    c = int(input("Enter a number: "))
    if a>b & a>c:
    print(f"{a} is greater")
    elif b>a & b>c:
    print(f"{b} is greater")
    else:
    print(f"{c} is greater")
    #To find the greatest among three numbers

  • @johnfelix.
    @johnfelix. ปีที่แล้ว +1

    Guys try this!
    age = int(input("How old are you... BOI? "))
    def age_questionary():
    if age >= 100:
    print("OMG LMAO! Alright gramps you're signed up. Have fun old man.")
    elif age >= 18:
    print("Congrats! You're good to go... BOI. ")
    elif age < 0:
    print("You're kidding right? ")
    else:
    print("oh come on... YOU NEED TO BE 18+ TO SIGN UP YOU ANIMAL!!! ")
    print("GET LOST PETER PAN!")
    age_questionary()

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

    #Simple account login
    name = input("Enter your name: ")
    if name == "":
    print("Invalid response")
    print("Must be 18+ to join")
    age = int(input("Enter your age: "))
    if age >= 125:
    print("Invalid response")
    elif age >= 18:
    print(f"Name: {name}")
    print(f"Age: {age}")
    elif age < 0:
    print("Invalid response")
    else:
    print("You are not old enough")
    response = input("Is the information above correct? (Y/N): ")
    if response == "Y":
    print("Account Confirmed")
    elif response == "N":
    print("Restart")
    else:
    print("Invalid response")

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

    For the algo

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

    Correct me if I'm wrong but
    Java
    if ( _condition_ ) {
    _Code_
    }
    Python
    if _condition_ :
    _Tab_ _Code_

  • @WilliamMcDaniel-nr1nx
    @WilliamMcDaniel-nr1nx ปีที่แล้ว

    GLife

  • @abdulhannan-18
    @abdulhannan-18 8 หลายเดือนก่อน

    True False
    tuc = True #Available
    if tuc: #Coz this condition is true so it will print the intended text.
    print("It is available.")
    else:
    print("Not available!")
    It is available
    tuc = False #Not Available
    if tuc: #Coz this condition is false so it will print the else part.
    print("It is available.")
    else:
    print("Not available!")
    Not available!
    online = True
    if online : #Coz this condition is true so it will print the intended text.
    print("You are online")
    else:
    print("You are offline")
    You are online
    online = False
    if online : #Coz this condition is false so it will print the else.
    print("You are online")
    else:
    print("You are offline")
    You are offline

  • @niceballz243
    @niceballz243 ปีที่แล้ว

    I have a prom today, this is a typical conversation that will occur many times.
    anwser = input("Bro are you drinking?: ")
    if anwser.lower() == "yes":
    a = input("Vodka or beer?: ")
    if a.lower() == "vodka":
    print("Good choice man")
    print("*Passes you the bottle* ")
    if a.lower() == "beer":
    print("Are you serious man?:")
    elif anwser.lower() == "no":
    you_sure = input("Are you sure? YOU WON'T DRINK WITH ME??? : ")
    if you_sure.lower() == "i will":
    a = input("That's a good choice, you want beer or vodka?: ")
    if a.lower() == "vodka":
    print("Good choice man")
    print("*Passes you the bottle* ")
    if a.lower() == "beer":
    print("Are you serious man?:")
    if you_sure.lower() == "no":
    print("Damnit go to hell.")
    else:
    print("You are wasted already")

  • @ComputerEngineering-te6yh
    @ComputerEngineering-te6yh 4 วันที่ผ่านมา

    *sorry for my bed england*
    /
    guess1 = int(input("Enter a digit. You have 3 chance to guess it. İf its same as mine, you win! ENTER: "))
    number = 5
    if guess1 == number:
    print(f"yes, it was {number}. lucky bastard... you win! ")
    else:
    guess2 = int(input(f"HAH LOSER, It's not {guess1}. Let's try it again (enter): "))
    if guess2 == number:
    print(f"yes, it was {number}. You win!")
    else:
    guess3 = int(input(f"Nope, loser. It's not {guess1} or {guess2}. You're last chance (enter): "))
    if guess3 == number:
    print(f"Yes, it was {number}. You finally won! Be proud of yourself, with your wrong answers, loser.")
    else:
    print(f"Unfortunately, it's not {guess1}, {guess2} or {guess3}. It was... actually forget about it, bye.")
    /
    wrong code was look like this:
    /
    guess1 = int(input("Enter a digit. You have 3 chance to guess it. İf its same as mine, you win! ENTER: "))
    number = 5
    if guess1 == number:
    print(f"yes, it was {number}. lucky bastard... you win! ")
    else:
    guess2 = int(input(f"HAH LOSER, It's not {guess1}. Let's try it again (enter): "))
    if guess2 == number:
    print(f"yes, it was {number}. You win!")
    else:
    guess3 = int(input(f"Nope, loser. It's not {guess1} or {guess2}. You're last chance (enter): "))
    if guess3 == number:
    print(f"Yes, it was {number}. You finally won! Be proud of yourself, with your wrong answers, loser.")
    else:
    print(f"Unfortunately, it's not {guess1}, {guess2} or {guess3}. It was... actually forget about it, bye.")
    /

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

    thank you bro