[PIPython] Modificare alcuni caratteri da file di testo

Paolo Mossino mox79
Ven 19 Nov 2004 15:16:46 CET


A me piace leggere a blocchi di 8k, che se non sbaglio e' una buona 
misura... tu puoi farlo di una dimensione arbitraria.

<code>
while True:
     dati = fi.read(8192)
     if not dati:
         break
     fo.write(string.translate(dati, table))
</code>

-- 
  ,___,    ~ Paolo Mossino  (Alexander)         e-m a il: mox79 a gmx.it ~
  (0v0)    ~ Jabber ID : alexander a jabber.linux.it - ICQ #: 28473944 ~
  (_^((\   ~ "My crime is judging people by what they say and think, ~
  -"-"-\\  ~ not what they look like"          [Mentor's Last Words] ~



More information about the Python mailing list