Re: Python et ezdxf

Top Page

Reply to this message
Author: Jérôme Kieffer
Date:  
To: guilde
CC: xmarc
Subject: Re: Python et ezdxf
On Sat, 1 Sep 2018 12:19:54 +0200
Marc <xmarc@???> wrote:

>
> J'ai du remplacer :
>
>     print("start point: %s\n" % e.dxf.start)

>
> par
>
>     print("start point: {0}".format(e.dxf.start))

>
> sinon ça me pétait une erreur :
>     print("start point: %s" % e.dxf.start)
> TypeError: not all arguments converted during string formatting


C'est que e.dxf.start est iterable. Ici tu affiches que le premier element.

print("start point: " + str(e.dxf.start))
marche partout.