for i in range(1,6):
name=input("請輸入第" str(i) "個學生的姓名:")
age=input("請輸入第" str(i) "個學生的年齡:")
height=input("請輸入第" str(i) "個學生的身高:")
weight=input("請輸入第" str(i) "個學生的體重:")
dic_student[name]=[age,height,weight]
for k,v in dic_student.items():
print("{:<3} {}歲 {}cm {}kg".format(k,v[0],v[1],v[2]))