我试图从“Replit”数据库中删除特定值,但我找不到正确的方法。有人能把我的鼻子推到正确的方向吗?
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)
我试图从“Replit”数据库中删除特定值,但我找不到正确的方法。有人能把我的鼻子推到正确的方向吗?
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)