The point of this code is to input a name, and when you input the wrong name, it will ask for it again. The counter will check how many times you got the answer wrong, and once you get the right answer, it will work. The issue is that I cant get the answer to print.
counter=0
name=str(input("Input Name:"))
while name !="Ms.Lal" or "Ken'en":
name=str(input("Input Name Again:"))
counter+=1
if name=="Ms.Lal" or name=="Ken'en":
print("You got the answer wrong ",counter,"times.")