generate functionTue, 20 Jun 2023
GRAFICAR CON CANVAS Y MATPLOTLIB UNA FUNCION X**2 USANTO TKINTER EN UNA VENTANA con mainloop incluido
def graph(canvas, width, height): for x in range(width): y = x ** 2 plot(canvas, x, y) mainloop()
Python
Generate More