If I have some plot nested in some loop, lets say:
import matplotlib.pyplot.plot as plot
import matplotlib.pyplot at plt
x = [1, 2, 3, 4]
plt.figure()
plot(x)
plt.title('some title with the {name}')
The title is dynamic, and I often want to copy the name into my clipboard after viewing the plot. Is there a way to make the title of my plot copy-able?
Another note, I am using Spyder 4.0.1, and my plots appear in its plot pane.