from shapely.geometry import Point #创建以(0, 0)为圆心,10为半径的圆 circle = Point(0, 0).buffer(10) circle.area #圆的面积313.6548490545939 ...
確定! 回上一頁