I would like to create a dict where the value is a list of tuples
The code below produces a dict with lists of numbers, not list of tuples
mydict = {}
for line in file:
# read a
# read b
# read c
mydict[a] = (b, c) if a not in mydict else mydict[a].append((b, c))