Answers:
According to the documentation the output formats depend on the type of Backend system being used for plotting. Common formats like JPEG and PNG are available usually.
See https://matplotlib.org/api/pyplot_api.html#matplotlib.pyplot.savefigYou can check which formats are available using;
from matplotlib import pyplot
plot.gcf().canvas.get_supported_filetypes()
ok
thanks