हिंदी

Write Python code to draw the following bar graph representing the total sales in each quarter. Add the Title, Label for X-axis and Y-axis. Use the following data for plotting the graph: - Informatics Practices

Advertisements
Advertisements

प्रश्न

Write Python code to draw the following bar graph representing the total sales in each quarter. Add the Title, Label for X-axis and Y-axis.

Use the following data for plotting the graph:
sales=[450,300,500,650]
qtr=["QTR1", "QTR2", "QTR3", "QTR4"]

कोड लेखन

उत्तर

Import matplotlib.pyplot as plt 
sales=[450,300,500,650] 
qtr=['QTR1','QTR2','QTR3','QTR4'] 
plt.bar(qtr,sales) 
plt.xlabel('quarter') 
plt.ylabel('sales') 
plt.title('Sales each quarter') 
plt.show()
shaalaa.com
  क्या इस प्रश्न या उत्तर में कोई त्रुटि है?
2022-2023 (March) Set 4

APPEARS IN

Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×