Last answered:

24 Mar 2020

Posted on:

23 Mar 2020

0

Related to matplotlib

During making sierpinski triangle why we take '0' along with plt.plot( a1,b1,'0')in last line?
1 answers ( 0 marked as helpful)
Instructor
Posted on:

24 Mar 2020

0
Hi Ritik, the 'o' is the marker style and shows the shape in which our points are displayed. 'o' stands for circle, so each data point we plot takes the form of a blue circle. Apart from a circle, you can choose '.' for point or '-' for a horizontal line. Here is the complete list of options, if you want to check it out: https://matplotlib.org/3.1.1/api/markers_api.html Best,  Eli

Submit an answer