Any idea how i can format my output file with ********************Start file*********************** usinf Python 2.7

David Hutto dwightdhutto at gmail.com
Sun Feb 10 11:30:13 EST 2013


I haven't looked at  text wrapper, but it would probably look
something like this in a function, untested:

def text_wrapper(file_name = None, pre_text = None, text = None,
post_text = None):
    f = open(file, 'a')
    f.write("%s\n%s\n%s\n" % (pre_text = None, text, post_text = None)
    f.close()


-- 
Best Regards,
David Hutto
CEO: http://www.hitwebdevelopment.com



More information about the Python-list mailing list