Generation

generate functionSun, 14 May 2023

dibujar un triangulo png

import numpy as np import matplotlib.pyplot as plt x = np.arange(1,10) y = x plt.plot(x, y) plt.title('image title') plt.xlabel('x') plt.ylabel('y') plt.show()

Want to kickstart your project?Use the new AI Studio to create your code