python plot save figure as png code example
Example 1: save plot in python
plt.savefig('books_read.png')
Example 2: savefig matplotlib python
import matplotlib.pyplot as plt
plt.figure()
plt.plot([1,2,3],[1,2,3])
plt.savefig("out.png")
plt.savefig('books_read.png')
import matplotlib.pyplot as plt
plt.figure()
plt.plot([1,2,3],[1,2,3])
plt.savefig("out.png")