serviceType = ""
while serviceType != "R" or serviceType != "P":
serviceType = input("Service type (R/P): ").upper()
print(serviceType)
if serviceType != "R" or serviceType != "P":
print("Error: Invalid Entry \n")
Whenever I run the code above, the output, no matter what input I put into it, is the message "Error: Invalid Entry". Is there something I am doing wrong?