summaryrefslogtreecommitdiff
path: root/mit/dict.py
blob: e90c2afb6b01f49641cbfe260d7fe01f1319c856 (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/usr/bin/python3

#Dictionary examples:

my_dict = {'a':1, 'b':2, 'c':3}

my_dict['d'] = 9 #Add new member

def update(new_dict, item):
    del new_dict[item]