Here is the code. I want to write a different phrase that needs to be printed according to the Q1 response but the program doesn't work properly and prints all the phrases.
print ('Pet animals')
#choose an animal
print ('A. Dog')
print ('B. Cat')
print ('C. Hamster')
print ('D. Bird')
print ('E. None')
Q1response= input('I have a ')
if(Q1response == "A" or "a"):
print ('They are so cute')
elif (Q1response == "B" or "b"):
print ('They are so haughty')