while True:
look = input("Key : ")
if look == "ksvbd956dmew1":
But instead of that and having a bunch of elifs can I do like
while True:
look = input("Key : ")
if look == "ksvbd956dmew1", "Otherpassword", "Otherpassword":
Then if the user types one of those passwords it lets them in. I wasn't sure what this was called as I am new to python so I couldn't search it up Hopefully someone could help me here :)