I have a shapely Polygon. What is the difference between converting it to wkt and converting it to string:
import shapely.wkt
P = shapely.wkt.loads('POLYGON ((8.0 3.0, 8.3 3.3, 8.3 3.0, 8.0
3.0))')
print(P.wkt)
print(str(P))
Is the result always the same? And can these two be used interchangeably?