Hi there is a dictionary, m={'A':[1.5,3.6,5.7,6,7,8], 'B':[3.5,5,6,8,4,5], 'C':[2.8,3.5,4.5,5.6,7.0,9.0]}. I want to plot three lines with python matplotlib at one figure(like the following figure). The x-aix is the same:[1, 2, 3, 4, 5, 6]. and three y values is the key(A, B, C)'s values. and A, B, C is three lines labels. how to plot it. I have tried by the following code, but it is wrong, could you tell me how to do it.
for k, v in dict_s:
plt(range(1, 4), v, '.-', label=k)

