colab or python ide is not recognize the or statement. If I run one statement, it checks and prompts me to enter the correct one. but if I add the next expression with the "or operator", it just keeps prompting me for the correct info even when its correct.
salesperson_num = input ("Please enter the salesperson's ID number: ")
sales_amt = float (input ("Please enter sales amount: "))
class_type = int (input ("Please enter a class type for the salesperson: "))
while class_type !=1 or class_type !=2:
class_type = int(input("Please enter class a correct class: Class 1 , 2: "))