épaisseur de tracé de python matplotlib

import matplotlib.pyplot as plt
import numpy as np

fig= plt.figure()

axes= fig.add_axes([0,0,1,1])

x= np.arange(0,11)

axes.plot(x,x**2, color='purple', linewidth=10)

plt.show()
Xanthous Xenomorph