हिंदी

Consider the following graph. Write the Python code to plot it. Also add the Title, label for X and Y axis. Use the following data for plotting the graph smarks=[10,40,30,60,55] - Informatics Practices

Advertisements
Advertisements

प्रश्न

Consider the following graph. Write the Python code to plot it. Also add the Title, label for X and Y axis.

Use the following data for plotting the graph 
smarks=[10,40,30,60,55]
sname=["Sahil", "Deepak", "Anil", "Ravi", "Riti"]

कोड लेखन

उत्तर

Import matplotlib.pyplot as plt 
smarks=(10,20,30,40,50] 
sname=['sahil','deepak','anil','ravi','riti'] 
plt.plot(sname,smarks) 
plt.xlabel('Student Name') 
plt.ylabel('Marks Scored') 
plt.title('Marks secured by students in Term-I') 
plt.show()
shaalaa.com
  क्या इस प्रश्न या उत्तर में कोई त्रुटि है?
2022-2023 (March) Set 4
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×