I tryed to make a Verification system, but it dont really Works well.
If i choose username Fynn or LeQuit this ist the output
Welcome Fynn
You are not LeQuit or Fynn
But its not what i need i need it to choose 1, Like if i type a random name Example:dfgdfdfgd
it still says the Same...
My code
if username == "LeQuit" or "Fynn":
print("Welcome " + username)
if not username == "LeQuit" or "Fynn":
print("You are not LeQuit or Fynn ")