Advertisements
Advertisements
Question
The inventory mangement software of a grocery shop stores the price of all fruits as follows:
Fruits=[ 'Apple', ‘Guava’, ‘Papaya’, ‘Grapes’, 'Mango']
Price=[150, 70, 50, 30, 120]
Write suitable Python code to generate a Bar Chart on the given data. Also add the chart title and label for X and Y axis. Also add suitable statement to save this chart with the name fruits.png
.
Code Writing
Solution
import matplotlib.pyplot as plt
# Data
fruits = ['Apple', 'Guava', 'Papaya', 'Grapes', 'Mango']
price = [150, 70, 50, 30, 120]
# Create bar chart
plt.bar(fruits, price, color='orange')
# Add title and labels
plt.title('Prices of Fruits')
plt.xlabel('Fruits')
plt.ylabel('Price (in Rs)')
# Save the chart as fruits.png
plt.savefig(fruits.png')
# Show the chart
plt.show()
shaalaa.com
Is there an error in this question or solution?