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