If I try running this code it will only give me the answer for the 'if' part and not the 'else':
yes = "Answer is correct"
no = "Answer is incorrect"
score = 0
print("Hello and welcome to my quiz!")
q1 = input("What is my name?\n")
if q1 != "Robert" or "robert":
print(no)
else:
print(yes)
score += 1
print("Your score is: " + str(score))