I don't know what is the problem, but I can't end a while loop if it is under two if conditions. Let me show the code:
while True:
k = input ("Please enter 'hello': ")
if k == "hello":
m = input ("Are your Sure? (Y/N): ")
if m == "Y" or "y" or "yes" or "Yes":
break
Now, after the second prompt, even if i type no or any other things, while loop still ends. I only want to end it after second confirmation. What is my mistake in the coding?