jeudi 13 août 2020

The else function does not appear even if the "if" conditions are not met [closed]

The problem is when the bro says "no" the condition "if" always appears even if i use "else" or "elif", why? Isn't it supposed that if the input is something other than yes or yeah, is else what appears? pls help

ok here is my code:

# asking the bro
are_you_happy = input("You feel bad bro? ")

# psicological support loop haha
while are_you_happy.upper() == "YES" or "YEAH":
  print("*give him a hug*")
  better = input("you feel better bro? ")

  # he feel better boys :)
  if better.upper() == "YES" or "YEAH":
    print("i'm happy for you")
    break

  # he don't feel better :(
  elif better.upper() == "NO":
    more_support = input("do you want another hug? ")
    if more_support.upper() == "YES" or "YEAH":
        print("*give him a very huge hug")
        print("i hope you well bro")
        break

enter image description here

Aucun commentaire:

Enregistrer un commentaire