Answers for "documentation matplotlib"

1

matplotlib

# importing matplotlib module
 from matplotlib import pyplot as plt
  
# Plotting to our canvas  
 plt.plot([1,2,3],[4,5,1])
  
# Showing what we plotted 
 plt.show()
Posted by: Guest on March-30-2021

Python Answers by Framework

Browse Popular Code Answers by Language