fork download
  1. import matplotlib.pyplot as plt
  2. x=[1,3,5,7,9,11]
  3. y=[11,34,97,65,124,220]
  4. plt.plot(x,y,"r",marker="H",markeredgecolor="b",linestyle="dotted",linewidth=4)
  5. plt.title("random graph",)
  6. plt.show()
Success #stdin #stdout 0.83s 55204KB
stdin
Standard input is empty
stdout
Standard output is empty