4
Cambiar el título de la ventana de la figura en pylab
¿Cómo puedo establecer el título de una ventana de figura en pylab / python? fig = figure(9) # 9 is now the title of the window fig.set_title("Test") #doesn't work fig.title = "Test" #doesn't work
92
python
matplotlib