I've seen this a couple of times:
# http://geopandas.org/aggregation_with_dissolve.html
continents.plot(column = 'pop_est', scheme='quantiles', cmap='YlOrRd');
# https://jakevdp.github.io/PythonDataScienceHandbook/04.14-visualization-with-seaborn.html
plt.legend('ABCDEF', ncol=2, loc='upper left');
# https://matplotlib.org/api/pyplot_api.html
x = np.arange(0, 5, 0.1);
It confuses me that it is done very often with matplotlib and also inconsistently.
Is this only an error? Was it in the matplotlib documentation for a while?
Does / did ;
have any function at the and of a line in Python? (This suggests the answer is "no", but it does not explain why it is so wide-spread with matplotlib.)