MATPLOTLIB Styles Attr
style.use('Solarize_Light2')
plt.plot([1, 2, 3], [5, 2, 7])
plt.show()
style.use('default')
plt.plot([1, 2, 3], [5, 2, 7])
plt.show()
#We can see all the available styles by accessing the style.available attribute.
style.available
rudythealchemist