delete first line in a file

Michele Petrazzo michele.petrazzo at TOGLIunipex.it
Fri Jun 30 07:27:57 EDT 2006


Juergen Huber wrote:
> but...how can i say python, delete the first line?!
> thats my problem!

You can open the file, read its lines with readlines function ( that 
return a list), so make your modifies and save to another file.

Now, do you know how to work with lists?

http://python.org/doc/2.4.2/tut/node5.html#SECTION005140000000000000000

and now you have only to wrote it

http://python.org/doc/2.4.2/tut/node9.html#SECTION009200000000000000000

Michele



More information about the Python-list mailing list