Concept Flow - Basic plt.plot usage
Import matplotlib.pyplot as plt
Prepare data: x and y lists
Call plt.plot(x, y)
Plot line graph appears
Call plt.show() to display plot
Graph window opens
This flow shows how to import matplotlib, prepare data, plot it using plt.plot, and display the graph.