1. You have already set up a dictionary, and then set another dictionary and want the value of the dictionary to be the first dictionary name. How to implement 
 2. My code: 
 zeyu_information= {
"first_name":"zeyu",
"last_name":"zhou",
"age":23,
"living_city":"huaian""
}people= {
"zeyu":"zeyu_information",
}for name,infs in people.items ():
print("\n"+name.title()+""s information:")
for inf in infs:
    print(inf.title())
    
    