python-by-example-150-chall.../challenges96-103/challenge-103.py

11 lines
343 B
Python
Raw Normal View History

2019-07-31 19:12:40 +08:00
array_list = {}
for i in range(4):
name = str(input('Enter name to add : '))
age = int(input('Enter age to add : '))
shoe_size = int(input('Enter shoe size to add : '))
array_list[name] = {}
array_list[name]['age'] = age
array_list[name]['shoe_size'] = shoe_size
for i in array_list:
print(i, array_list[i]['age'])