In this tutorial you will learn how to install Matplotlib and create a basic bar chart for student mark list in python.
CODE:
import matplotlib.pyplot as pltx = ['Tamil', 'English', 'Maths', 'Science', 'Social']y = [80, 79, 95, 83, 75]plt.bar(x, y, color="red")plt.title('Student Marks')plt.xlabel('Subjects')plt.ylabel('Marks')plt.show()