I was trying to create "not equal to N or n" to allow for different inputs, and have created a logic that allows all selections to pass. Is my logic wrong, or my coding?
item = input()
if item != "N" or item != "n":
print("Inside loop - {0} not like N or n".format(item))
else: print("outside loop - {0} like N or n".format(item))