Consider the following code snippet:
plt.plot(*zip(X[j], X[i]), color='black')
Why we've used asterisk before zip in the parameter of the plot method?
Consider the following code snippet:
plt.plot(*zip(X[j], X[i]), color='black')
Why we've used asterisk before zip in the parameter of the plot method?