record = [] end_of_list = int(input("How many users you want to add: ")) for i in range(0,end_of_list): person = { "Name":input("Enter Your Name: "), "Age":int(input("Enter your Age: ")), "Work":input("Enter your work: "), "Skill": [input("Enter your Skills Separated by Commas: ").split(",")], "Degree":{ "Title":input("Enter your degree title: "), "Major":input("Enter your major Subject: "), "Completion_date":input("Enter your Completion Date: ") }, "Salary":input("Enter your Salary: ") } record.append(person) print("--------------------------------------------------------------------------------------------------------") for key,value in person.items(): print(key,":",value) print("----")