Hi i am starting coding and i got this problem
#* This is the code
#* What is the problem i always get a right name and go to the if ?
#* This is the code
1 2 3 4 5 6 7 |
right_name = input ( "is your right name " + right_name " yes / no ? " ) if right_name = = "y" or "YES" or "yes" : print ( "We go to the next" ) elif right_name = = "no" or "No" or "NO" or "no" or "n" : print ( "We will return now " ) else : print ( "Error !" ) |