Raspberry Pi - Display and Output
Identify the error in this code snippet for plotting a pie chart on Raspberry Pi:
import matplotlib.pyplot as plt sizes = [10, 20, 30] labels = ['A', 'B', 'C'] plt.pie(sizes, labels=labels) plt.show()
