I am working on a project called password manager,for that i need to store the passwords and emails and i need to access password whenever user type a corresponding email i am trying to store them in a json file ,but iam unable to store user input to a json file
if choice=="A":
Email = input("Enter your email..")
password = input("Enter your password..")
manager = """{
"email":Email
"password":"password"
}"""
This is the code that i have written