There are no problems when starting in python 2.7, but I get an error when starting in python 3.
Is there something I need to change in this code.
import matplotlib as mpl
poly = mpl.path.Path(zip(listx,listy))
The error I get is
TypeError: float() argument must be a string or a number, not 'zip'
source
share