10
Escrevendo uma lista de listas Python em um arquivo csv
Eu tenho uma longa lista de listas do seguinte formulário --- a = [[1.2,'abc',3],[1.2,'werew',4],........,[1.4,'qew',2]] ou seja, os valores na lista são de tipos diferentes - float, int, strings. 1.2,abc,3 1.2,werew,4 . . . 1.4,qew,2
168
python
file
csv
file-io
python-2.7