Path: csiph.com!usenet.pasdenom.info!weretis.net!feeder4.news.weretis.net!feeds.phibee-telecom.net!newsfeed.xs4all.nl!newsfeed4.news.xs4all.nl!xs4all!post.news.xs4all.nl!not-for-mail Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.004 X-Spam-Evidence: '*H*': 0.99; '*S*': 0.00; 'subject:text': 0.05; 'subject:file': 0.07; 'string': 0.09; 'received:80.91': 0.09; 'received:80.91.229': 0.09; 'received:gmane.org': 0.09; 'received:list': 0.09; 'subject:into': 0.09; 'python': 0.11; 'wrote': 0.14; '"\\n")': 0.16; 'file"': 0.16; 'newline,': 0.16; 'received:80.91.229.3': 0.16; 'received:plane.gmane.org': 0.16; 'print': 0.22; 'instead.': 0.24; 'header:X-Complaints-To:1': 0.27; 'function': 0.29; 'forgot': 0.30; 'allows': 0.31; 'file': 0.32; 'text': 0.33; 'running': 0.33; 'but': 0.35; 'google': 0.35; 'add': 0.35; 'there': 0.35; 'c++': 0.36; 'to:addr:python-list': 0.38; 'does': 0.39; 'to:addr:python.org': 0.39; 'received:org': 0.40; 'space': 0.40; 'dave': 0.60; '2.7.': 0.84; 'zhang': 0.84; 'angel': 0.91; 'directly.': 0.95 X-Injected-Via-Gmane: http://gmane.org/ To: python-list@python.org From: Dave Angel Subject: Re: parse a csv file into a text file Date: Thu, 6 Feb 2014 06:53:25 -0500 (EST) Organization: news.gmane.org References: <5c268845-003f-4e24-b27a-c89e9fbfcc6c@googlegroups.com> X-Gmane-NNTP-Posting-Host: dpc6744192085.direcpc.com X-Newsreader: PiaoHong Usenet NewsReaders 1.36 X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: Lines: 28 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1391687418 news.xs4all.nl 2851 [2001:888:2000:d::a6]:48763 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:65531 Dave Angel Wrote in message: > Zhen Zhang Wrote in message: >> > >> I am currently running python 2.7. >> >> Yes, i thought there must be a print function in python like fprint in C++ that allows you to print into a file directly. >> But i google about "print string into text file" I got answers using f.write() instead. :) >> -- >> Oops. Forgot the newline. > In python 2.x, > > Instead of > f.write (a + " " + b) f.write (a + " " + b + "\n") > you can use > print >> f, a, b > print will add in the space and newline, just as it does to sys.stdout. -- DaveA