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

Morten Engvoldsen mortenengv at gmail.com
Sun Feb 10 12:00:52 EST 2013


Hi Dave,
Thanks for your reply with full function :) Great forum.. :)

On Sun, Feb 10, 2013 at 5:46 PM, David Hutto <dwightdhutto at gmail.com> wrote:

> Here is the full function with an instance using the function:
>
> def text_wrapper(file_name = None, pre_text = None, text = None,
> post_text = None):
>         f = open(file_name, 'a')
>         f.write("%s\n%s\n%s\n" % (pre_text, text, post_text))
>         f.close()
>
>
> text_wrapper(file_name = r"/home/david/file_doc.doc", pre_text =
> "***Start File***", text = "Some data here.", post_text = "***End
> File***")
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.python.org/pipermail/python-list/attachments/20130210/c825604e/attachment.html>


More information about the Python-list mailing list