This code:
import matplotlib.pyplot as plt
fig, axes = plt.subplots(12,2, figsize = (12,40), squeeze=False)
print(type(axes[0,0]))
Gives the following output:
<class 'matplotlib.axes._subplots.AxesSubplot'>
Why is there a leading underscore in the module name "_subplots"?
This is not a duplicate of the following question since my question refers to module naming only and not other cases. What is the meaning of a single and a double underscore before an object name?