I was wondering where and how does matplotlib stores information about plots, titles, labels, and...
In some python libraries, you make an instance of a class, and then modify the atributes or call the methods in order to get the results you want. But for example in matplotlib
plt.plot(x, y)
plt.title('matplotlib')
plt.show()
plot and title are two separated functions, How does show function have access to the returning value of those two functions, and what kind of data structure is involved here?