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

Поділитися
Вставка
  • Опубліковано 17 лис 2024

КОМЕНТАРІ • 130

  • @BroCodez
    @BroCodez  2 роки тому +78

    # 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 Рік тому +2

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

    • @breadtoast118
      @breadtoast118 Рік тому

      Thank you

    • @michaelrobinson9952
      @michaelrobinson9952 4 місяці тому

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

    • @That_one_guy_maybe
      @That_one_guy_maybe Місяць тому

      No food 🥲

    • @dreamfeve.r
      @dreamfeve.r Місяць тому

      at 4:18 you explained how to make the older than 100 statement dominant but what if - and this is more useful practically- S.o wanted to print that statement " You are too old to sign up" but that statement is only a joke and the user gets signed in anyway
      that's question 1
      question 2 is whats the difference bet.
      intput ( x):
      and
      int(input( x) :
      they both get auto printed While I was looking for a way to add a variable give it a value and only gets printed if input response == x/x
      Question 3 is how do I fix this code of mine...
      # Online Python - IDE, Editor, Compiler, Interpreter
      age = int(input("Enter your age:"))
      if age >= 18:
      print("You are now signed up!")
      elif age = 99:
      int(input("Are you sure?")
      input answer = "Yes"
      print("Alright we dont judge!")
      else:
      print("Thats what I thought")
      else:
      print("You arent old enough ;(" )
      just tryna exercise my brain here lol
      EDIT* you answered my third question in the video lol I paused the video to make this exercise for myself lmao

  • @Tony.Vibez.
    @Tony.Vibez. Рік тому +52

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

  • @PLP0321
    @PLP0321 Рік тому +8

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

  • @daydarasensei12
    @daydarasensei12 Рік тому +137

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

  • @anjali1977
    @anjali1977 Рік тому +24

    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 Рік тому

      yes
      @@johndank2209

    • @htg7127
      @htg7127 6 місяців тому

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

  • @aryansharma3189
    @aryansharma3189 Рік тому +6

    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 9 місяців тому

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

  • @MystikPrae
    @MystikPrae Рік тому +5

    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

    • @SaiNagarjun
      @SaiNagarjun 2 дні тому

      isn't it supposed to be elif>=18 and age>=60

  • @jetty4205
    @jetty4205 7 місяців тому

    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

  • @o9_169
    @o9_169 Рік тому +4

    thank you guy on the internet

  • @rumahmayatmortuary8110
    @rumahmayatmortuary8110 Місяць тому

    name = input("Type in your name. :")
    if name == "":
    print("TYPE YOUR NAME!!")
    elif name == " ":
    print("Your name is a space?? Bro what.")
    else:
    print("Alright. Thank you!")
    age = int(input("Type in your age to sign up. :"))
    if age >= 100:
    print("You serious?")
    elif age >= 50:
    print("Sorry, but your too old for this job.")
    elif age >= 18:
    print("Your hired!")
    else:
    print("Your underaged.")
    Thanks for teaching me!

  • @user-ace96plays
    @user-ace96plays Рік тому +2

    NICELY DONE BRO...❤

  • @braydenfrith6066
    @braydenfrith6066 Рік тому +6

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

    • @Bazungabruv
      @Bazungabruv 2 місяці тому

      this comment is now 1 year old, can you tell me your progress so far?

  • @MohyDev
    @MohyDev Рік тому +13

    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 11 місяців тому

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

  • @htg7127
    @htg7127 6 місяців тому

    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

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

  • @patrickbig1960
    @patrickbig1960 21 день тому

    Thank you so much. You are the nest teacjer eveer

  • @kazansergei
    @kazansergei 4 місяці тому

    Good job! What about types of arrays?

  • @humbleharisonofficial2382
    @humbleharisonofficial2382 Рік тому

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

  • @thakre69
    @thakre69 2 роки тому +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🧡

  • @SleepyBombay
    @SleepyBombay 2 роки тому +1

    Free Lessons. love the vids u are the man

  • @fbushphone
    @fbushphone 7 місяців тому

    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?

  • @kkuveni
    @kkuveni 4 місяці тому

    you are too good at this thank u sm

  • @FarizDarari
    @FarizDarari 2 місяці тому

    Awesome as always, bro!

  • @wmstram1
    @wmstram1 Рік тому

    Watched it. Liked it.

  • @fatihaltun4763
    @fatihaltun4763 2 роки тому +5

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

  • @adhishgautam2540
    @adhishgautam2540 4 місяці тому

    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

  • @WINDOWSUSER-q4s
    @WINDOWSUSER-q4s Рік тому

    NICELY DONE...❤

  • @joncaldwell4753
    @joncaldwell4753 5 місяців тому

    Much appreciated

  • @TypicalVole2437
    @TypicalVole2437 Рік тому

    This was easy to learn thank you

  • @PSIwolf39
    @PSIwolf39 10 місяців тому

    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!")

  • @lordender_kitty_official
    @lordender_kitty_official 9 місяців тому

    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?

  • @Zagazawi
    @Zagazawi 2 дні тому

    Pls tell me what version this is

  • @TanmaySiju
    @TanmaySiju 2 місяці тому

    Your the best

  • @SteveNonkonyana
    @SteveNonkonyana 5 місяців тому

    Thanks this helps, am now subscribed

  • @AmirhosseinAZB
    @AmirhosseinAZB 11 місяців тому

    hey bro thanks for these awsome videos!

  • @NTC-SClydeDianzonMoreno
    @NTC-SClydeDianzonMoreno 7 місяців тому

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

  • @jim2376
    @jim2376 2 місяці тому

    In VS, using Python, how do I get that box at the bottom of the editor where I enter my age?

  • @v4mp1r3gurl6
    @v4mp1r3gurl6 Рік тому

    Thank youuuuu this is very helpful

  • @lekkalakavitha1327
    @lekkalakavitha1327 4 місяці тому

    this helps me !

  • @khantzinhein2415
    @khantzinhein2415 7 місяців тому

    Bro, you're the best.

  • @AntonioVivaldi-si5mr
    @AntonioVivaldi-si5mr Місяць тому

    name = input ("whats your name?")
    print ("nice im python")
    age = input ("age?")
    print ("cool")
    # here is a challenge to everyone who wanna solve this problem
    # would you like to learn coding? make a user input with yes or no but make it so only with IF or ELSE nothing else!
    # for example see below
    choice = input ("would like to learn coding? yes or no?:")
    if choice: no
    print("thats sad")

  • @Uberdurden
    @Uberdurden Рік тому

    best of best

  • @openyourmind5534
    @openyourmind5534 Рік тому

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

  • @Abzarad
    @Abzarad 6 місяців тому

    thanks Bro

  • @Espeque
    @Espeque Рік тому

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

  • @GhostGaming-tt9tu
    @GhostGaming-tt9tu 2 місяці тому

    Where were these videos when i was dying doing my assignment at 4 am?

  • @potato-b4c
    @potato-b4c 2 місяці тому

    # if statements are condition checkers if the condition is true it will execute the indented line of code
    import math
    # variables
    shape = input("enter a shape: ")
    if shape == "circle":
    radius = int(input("enter a radius: "))
    radius_2 = radius * radius
    area_circle = radius_2 * math.pi
    area_circle = round(area_circle)
    print(f"your circle is {area_circle}cm²")
    elif shape == "square":
    width = int(input("enter a number: "))
    area_square = width * width
    print(f"your square is {area_square}cm²")
    elif shape == "rectangle":
    length = int(input("enter length: "))
    width1 = int(input("enter width: "))
    area_rectangle = length * width1
    print(f"your rectangle is {area_rectangle}cm²")
    elif shape == "triangle":
    base = int(input("enter the length of your base: "))
    height = int(input("enter the height: "))
    area_triangle = base * height / 2
    print(f"your triangle is {area_triangle}cm²")
    else:
    print("invalid shape")

  • @jasonhammerle3582
    @jasonhammerle3582 Рік тому

    🤘Great Content!

  • @frizz6779
    @frizz6779 Рік тому

    Beo ur the best.

  • @yhaiji
    @yhaiji Місяць тому

    cool

  • @Afghanistanfutsalfans
    @Afghanistanfutsalfans Рік тому

    fully explained!

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

  • @traderhacker-k346
    @traderhacker-k346 8 місяців тому

    Ure a goat straight to the point

  • @sorrybabyx
    @sorrybabyx 2 роки тому

    Thank you

  • @Peyman13822
    @Peyman13822 10 місяців тому

    thank you

  • @Belalrazaa
    @Belalrazaa Рік тому +1

    i love u bhai❤

  • @Curious_Clover
    @Curious_Clover 7 місяців тому

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

  • @BahoraAvazova
    @BahoraAvazova 9 місяців тому

    thank you bro

  • @Bleedpool
    @Bleedpool Рік тому

    Love it bro!

  • @ninggonmei2016
    @ninggonmei2016 2 місяці тому

    see this code.. code should be working right????????🤧🤧
    👇👇
    print("would you like to try")
    response = input("press 'Y' for yes and 'N' or no: ")
    if response.upper == "y":
    print("I'll get you ready")
    elif response.upper == "n":
    print("Come back next time!!")
    else:
    print("you press the wrong button")
    please correct me sombody

  • @phonezriend
    @phonezriend 2 роки тому

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

  • @Artyon
    @Artyon 2 роки тому

    Thank you Bro!

  • @Dm__0612
    @Dm__0612 2 роки тому

    Thank you ❤️

  • @reinholdkambata6444
    @reinholdkambata6444 Рік тому

    🎩 off to Bro Code..

  • @bekturasanbekov1979
    @bekturasanbekov1979 Рік тому

    thx 4 vid bro !

  • @RiaanDurai
    @RiaanDurai 3 місяці тому

    thanks man

  • @velpr22
    @velpr22 Рік тому

    2:02 thats what that website said💀

  • @quyha1936
    @quyha1936 2 роки тому +1

    Love u so much ❤

  • @narcissenasdepago5017
    @narcissenasdepago5017 Рік тому

    Now it is clear

  • @omid1442
    @omid1442 8 місяців тому

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

  • @angelica1010
    @angelica1010 8 місяців тому

    you are the goatttt

  • @muthyala724
    @muthyala724 2 роки тому

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

    • @toastyt0es
      @toastyt0es Рік тому

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

  • @naphtalifurst4045
    @naphtalifurst4045 2 роки тому

    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?

  • @bloxfruits12346
    @bloxfruits12346 8 місяців тому

    print("u saved my life")

  • @AryanSingh-tw4qo
    @AryanSingh-tw4qo 3 місяці тому

    # if else and elif statements
    #exercise 1
    response = input("would you like some coffee? (Y/N): ")
    if response == "Y":
    menu = int(input("which flavour of coffee would you have? (1/2/3): "))
    elif response == 1:
    print("here is your 1 coffee")
    elif response == 2:
    print("here is your 2 coffee")
    elif response == 3:
    print("here is your 3 coffee")

    else:
    print("you can fck off respectively")

  • @Goncastrocito
    @Goncastrocito Рік тому

    print("Love u Bro Code☻♥")

  • @sainishantbiradar8022
    @sainishantbiradar8022 8 місяців тому

    For the algo

  • @WilliamMcDaniel-nr1nx
    @WilliamMcDaniel-nr1nx Рік тому

    GLife

  • @abdulhannan-18
    @abdulhannan-18 Рік тому

    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

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

    • @Reymax164
      @Reymax164 3 місяці тому

      *_This is inefficient…_* but I guess you already have learned more to improve it given that this is a 3 week old comment.