userpw = input("Enter password: ") secretpw = "5Ecr3t" if userpw == secretpw : print("Welcome!") else : print("System Locked!") #working