Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #38523
| Date | 2013-02-09 09:38 -0500 |
|---|---|
| From | Dave Angel <davea@davea.name> |
| Subject | Re: Any idea how i can format my output file with ********************Start file*********************** usinf Python 2.7 |
| References | <CAJ2vgs7cPKtb3fv=heMtfV7nS-15G+4npRVCkJLqx-CAkrMgVQ@mail.gmail.com> |
| Newsgroups | comp.lang.python |
| Message-ID | <mailman.1551.1360420708.2939.python-list@python.org> (permalink) |
On 02/09/2013 09:27 AM, Morten Engvoldsen wrote: > Hi Team, > I Have saved my output in .doc file and want to format the output with > > *************Start the File ************************ > > Some data here > > > *******************End of File***************************** > > Can you let me know how can i do that using Python? > > > Just add an output statement right after creating the file, and another just before closing it. This is assuming that this is a text file. By explicitly telling us it has a .doc extension, you may be trying to tell us it's in some proprietary file format whose type we have to guess. BTW, if you actually wanted *code*, you might have considered including some more information about your environment. For example a print statement is an output statement in Python 2.x, while the print function in Python 3.x looks quite different, at least when directed to a file. -- DaveA
Back to comp.lang.python | Previous | Next | Find similar | Unroll thread
Re: Any idea how i can format my output file with ********************Start file*********************** usinf Python 2.7 Dave Angel <davea@davea.name> - 2013-02-09 09:38 -0500
csiph-web