Posts

Showing posts from December, 2023

New trail

Image
YouTube Video Downloader import matplotlib.pyplot as plt # Sample data for a line graph x = [1, 2, 3, 4, 5] y = [2, 5, 7, 1, 3] # Create the line graph plt.plot(x, y) # Add labels and title plt.xlabel("X-axis Label") plt.ylabel("Y-axis Label") plt.title("Line Graph") # Display the graph plt.show()