-1

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)
Wicked
  • 1

1 Answers1

0

how to delete a single specific value within a repl database? Does the solution that this user presented help?

AJR
  • 11
  • 4
  • hey thanks, but that's not the answer Iam searching for. I need the command to delete a specific value from a key. Key = passwords Value = "a" – Wicked Feb 06 '22 at 20:13