Hi,

You have to iterate.
Either with

for u in users:
    fob.write( u + '\n' )

or with a lambda function.

always a good call: http://python.org/

greets,
M.

On 02/03/2012 09:27 PM, Anatoli Hristov wrote:
Hi everyone,

I`m totaly new in python and trying to figure out - how to write a list to a file with a newline at the end of each object.
I tried alot of combinations :) like:
users = ['toli','didi']
fob=open('c:/Python27/Toli/username','w')
fob.writelines(users) + '%s\N'
fob.close()
 or fob.writelines('\N' % users)
or fob.writelines('%s\N' % users)
but nothing of dose works...

Could you help me find out the right syntaxes?

Thanks




--
http://mail.python.org/mailman/listinfo/python-list

Reply via email to