my_dict_1={'name':'Niuniu','Student ID':1}
my_dict_2={'name':'Niumei','Student ID':2}
my_dict_3={'name':'Niu Ke Le','Student ID':3}
dict_list=[]
dict_list.append(my_dict_1)
dict_list.append(my_dict_2)
dict_list.append(my_dict_3)
for d in dict_list:
    print(f"{d['name']}\'s student id is {d['Student ID']}.")