import matplotlib.pyplot as plt x = [0, 1, 2, 3, 4, 5] y = [0, 2, 4, 6, 8, 10] plt.plot(x, y, color='blue', marker='o', linestyle='--') plt.title('Line Plot Example') plt.xlabel('X values') plt.ylabel('Y values') plt.grid(True) plt.show()