📅  最后修改于: 2022-03-11 14:46:39.892000             🧑  作者: Mango
### credit to StackOverflow user in source link
import matplotlib.pylab as plt
lists = sorted(d.items()) # sorted by key, return a list of tuples
x, y = zip(*lists) # unpack a list of pairs into two tuples
plt.plot(x, y)
plt.show()