iam trying to remove a specific value from a "Replit" databank and i cant find the correct way. Can somebody jut shove my nose in the right direction ?
user_input = "a"
def check(user_input):
if user_input in db["passwords"]:
db["used_password"] = user_input
print("correct")
else:
print("false")
check(user_input)