[Python] Esportare dati float in csv
Carlos Catucci
carlos.catucci a gmail.com
Mar 13 Feb 2018 13:52:13 CET
2018-02-13 12:10 GMT+01:00 Giuseppe Costanzi <giuseppecostanzi a gmail.com>:
>
>
> questo uno script per simulare il problema.
>
>
> import csv
>
>
> class Tester(object):
> def __init__(self,*args, **kwargs):
> super(Tester, self).__init__( )
>
> self.args = args
> self.kwargs = kwargs
>
> def exporter(self, rs, cols):
>
> obj = open("out.csv",'w')
> print(rs)
> with obj:
> writer = csv.writer(obj,delimiter=',')
> writer.writerow(cols)
> writer.writerows(rs)
>
> def main():
>
> cols = ["a","b","c","d"]
>
> rs = [(1, 0.382, 8.59, 76.4),
> (2, 0.687, 625.0, 103),]
>
> foo = Tester()
> foo.exporter(rs, cols)
>
> input('end')
>
> if __name__ == "__main__":
> main()
>
>
A me questo codice segala che csv non ha un metodo writer, tanto con 2.7
che con 3.6.3
Carlos
EZLN ... Para Todos Todo ... Nada para nosotros
-------------- parte successiva --------------
Un allegato HTML è stato rimosso...
URL: <http://lists.python.it/pipermail/python/attachments/20180213/c7e9e787/attachment.html>
Maggiori informazioni sulla lista
Python