<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta content="text/html;charset=iso-8859-1" http-equiv="Content-Type">
</head>
<body bgcolor="#ffffff" text="#000000">
Prova cos&igrave;:<br>
<br>
<font face="FreeMono">csv = open("dati.csv",&nbsp; "a")</font><br>
<font face="FreeMono">lista = [host, voiper, vcti]</font><br>
<font face="FreeMono">lunghezza = len(lista)</font><br>
<font face="FreeMono">i = 0</font><br>
<font face="FreeMono">while i &lt; lunghezza:</font><br>
<font face="FreeMono">&nbsp; print &gt;&gt; csv, lista[i]</font><br>
<font face="FreeMono">&nbsp; i = i+1</font><br>
<font face="FreeMono">csv.close()<br>
<br>
</font>A me funziona :)<br>
<br>
Igor Longhi ha scritto:
<blockquote cite="mid:489857E3.9000404@makakojump.com" type="cite">
  <pre wrap="">ok, questo problema l'ho risolto (sono un pirla, non chiudevo il file 
una volta aperto)

ora rimane il problam di come generare dalla lista un file CSV... 
qualcuno mi pu&ograve; aiutare?

Grazie in anticipo.

Igor
  </pre>
  <blockquote type="cite">
    <blockquote type="cite">
      <pre wrap="">Igor Longhi ha scritto:
  
    
      </pre>
      <blockquote type="cite">
        <pre wrap="">import socket

#Hostname
host = socket.gethostname()

#primo file
f=open ("/etc/ver_1")
voi=f.readline()
print voi

#secondo file
v=open("/etc/ver_2")
vcti=v.readline()


lista=[host, voiper, vcti]

#creiamo il CSV
csv=open("/etc/dati.csv",  "a")
for item in lista:
    csv.write(lista)

_______________________________________________


  
    
      
        </pre>
      </blockquote>
      <pre wrap="">_______________________________________________



  
    
      </pre>
    </blockquote>
  </blockquote>
  <pre wrap="">

  </pre>
</blockquote>
<br>
</body>
</html>