Re: Arquivo .dat
On Jun 14, 5:05 pm, Waleria <waleriantu...@gmail.com> wrote:
> Hello,
>
> I need to leave a file tabbed, like this:
>
> http://www.srl.caltech.edu/~shane/sensitivity/asteroids/scg_8564.dat
>
> Following piece of my code that does this:
>
> savefig('C:\simuladores\detector\media\imagem.png')
> writer = csv.writer(open('C:\simuladores\detector\media
> \dados.dat','wb'))
> for v1, v2 in pack(f, Sfase):
> texto_formato='%f\t\t%f' %(v1,v2)
> writer.writerow(texto_formato)
>
> resultado = Fase()
>
> But this error returns:
>
> TypeError at /simulador/
>
> Struct() argument 1 must be string, not xrange
>
> Request Method: POST
> Request URL: http://localhost:8000/simulador/
> Exception Type: TypeError
> Exception Value:
>
> Struct() argument 1 must be string, not xrange
>
> Exception Location: C:\simuladores\..\simuladores\detector\views.py
> in desenha_grafico, line 158
>
> in my code line 158 is this: for v1, v2 in pack(f, Sfase):
What are f and Sfase, and why are you using Struct.pack (and why
haven't you read the documentation for it)?
--
DR.
--
You received this message because you are subscribed to the Google Groups "Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to django-users+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/django-users?hl=en.
0 Comments:
Post a Comment
Subscribe to Post Comments [Atom]
<< Home