1Use [repl.it](https://repl.it/)!
2Try out the basics of Replit with our
3interactive playground.
4Code, collaborate, compile, run, share, and deploy
5Python and more online from your browser
1import matplotlib.pyplot as plt
2x=["science","commerce","arts"]
3h=[200,300,500]
4plt.bar(x,h)
5plt.xlabel("courses")
6plt.ylabel("students enrolled")
7plt.title("students enrolled for different courses 2020")
8plt.show()