Jun-18-2021, 08:23 PM
(This post was last modified: Jun-18-2021, 08:23 PM by michaelserra.)
I am developing a little program that stores user credentials in a dictionary and transfer them in a Pandas dataframe. Since the credentials are stored in a nested dictionary that begins with the username entered by the user, i dont know how to index the nested dictionary. Returns this error:
Error:Traceback (most recent call last):
File "profile_creator.py", line 29, in <module>
add_dict(username,password,email,phone_number,notes)
File "profile_creator.py", line 6, in add_dict
user_df = pd.DataFrame(credentials[0])
KeyError: 0
1 2 3 4 5 6 7 |
import pandas as pd def add_dict(username,password,email,phone_number,notes): credentials = dict () credentials[username] = { "password" : password, "email" : email, "phone_number" : phone_number, "notes" : notes} user_df = pd.DataFrame(credentials[ 0 ]) print (user_df) |