I want to check what the user input was and if it was something else, it would print("") and continue.
Right now I have
userasnwer = int(input("reply with Hi or Hello or Yo"))
 if userasnwer == "Hi" or "Hello" or "Yo": 
  from random import randint 
  number = randint(1,3)
  if number == 1:
   print(awnser1)
  if number ==2:
   print(awnser2)
  if number == 3:
   print(awnser3)
But it justs prints one of them for any response. Can someone help me with how to respond only from the given?
 
     
     
    