In[1]:importmatplotlib.pyplot as plt In[2]:importnumpy as np In[3]:y=np.arange(1,3,0.3)In[4]:plt.plot(y,color='blue',linestyle='dashdot',linewidth=4,marker='o',markerfacecolor='red',markeredgecolor='black ...: ',markeredgewidth=3,markersize=12);In[5]:plt.show() image.png ...