Мой Json Код для этой системы входа c basi не будет работать, и я немного запутался, пожалуйста, помогите. был бы очень признателен, если бы вы могли.
- Большое спасибо ^ __ ^
'' '
import json
sign_or_log = input('If you have an account on this repl please press 1 if you do not please press 2: ')
if sign_or_log == '2':
username = input('Please enter your new Username: ')
password = input('Please enter your new Password: ')
write = [
{
"name": username,
"password": password
}
]
file = open("data.json", "w+")
file.write(json.dumps(write))
file.close()
print('Thank you for subminting your new account.')
sign_or_log = input('If you have an account on this repl please press 1 if you do not please press 2: ')
if sign_or_log == '1':
login1 = input('Please enter your existing username: ')
login2 = input('Please enter your existing password: ')
try:
file = open("data.json", "r")
data = json.loads(file)
file.close()
except:
print('Access Denied')
print(data)
' ''