fork download
  1. import matplotlib.pyplot as plt
  2.  
Success #stdin #stdout 0.59s 54828KB
stdin
import matplotlib.pyplot as plt 
name=['amit','mohan','sudha']
maths=[100,95,85]
science=[100.0,100.0,100.0]
sst=[60.0,57.48,53.58]
plt.plot(name,maths)
plt.plot(name,science)
plt.plot(name,sst)
plt.legend(name)
plt.title('result analysis')
plt.xlabel('name')
plt.ylabel('score')
stdout
Standard output is empty