Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #32330
| Path | csiph.com!usenet.pasdenom.info!gegeweb.org!de-l.enfer-du-nord.net!feeder1.enfer-du-nord.net!feeds.phibee-telecom.net!newsfeed.xs4all.nl!newsfeed5.news.xs4all.nl!xs4all!post.news.xs4all.nl!not-for-mail |
|---|---|
| Return-Path | <python@mrabarnett.plus.com> |
| X-Original-To | python-list@python.org |
| Delivered-To | python-list@mail.python.org |
| X-Spam-Status | OK 0.012 |
| X-Spam-Evidence | '*H*': 0.98; '*S*': 0.00; 'output': 0.04; 'subject:question': 0.08; 'python': 0.09; 'parameter.': 0.09; 'def': 0.10; 'from:addr:mrabarnett.plus.com': 0.16; 'from:addr:python': 0.16; 'from:name:mrab': 0.16; 'function?': 0.16; 'message-id:@mrabarnett.plus.com': 0.16; 'wrote:': 0.17; 'thanks.': 0.21; '(usually': 0.22; 'sends': 0.22; 'tells': 0.22; 'this:': 0.23; 'header:In-Reply-To:1': 0.25; 'header:User- Agent:1': 0.26; 'instead.': 0.27; 'piece': 0.29; 'received:192.168.1.3': 0.29; "i'm": 0.29; "skip:' 10": 0.30; 'keyword': 0.30; 'normally': 0.30; 'code': 0.31; 'file': 0.32; 'anybody': 0.32; 'to:addr:python-list': 0.33; 'hi,': 0.33; 'skip:d 20': 0.34; 'does': 0.37; 'subject:: ': 0.38; 'mean': 0.38; 'to:addr:python.org': 0.39; 'received:192': 0.39; 'skip:" 10': 0.40; 'received:192.168': 0.40; 'help': 0.40; 'referred': 0.62; 'header:Reply-To:1': 0.68; 'reply-to:no real name:2**0': 0.72; 'saw': 0.75; '.....': 0.75; 'reply-to:addr:python.org': 0.84 |
| X-CM-Score | 0.00 |
| X-CNFS-Analysis | v=2.0 cv=XYELPfF5 c=1 sm=1 a=0nF1XD0wxitMEM03M9B4ZQ==:17 a=b2nRVtXOy8EA:10 a=KVxOD3BbuuEA:10 a=ihvODaAuJD4A:10 a=OUOv7kDek9cA:10 a=8nJEP1OIZ-IA:10 a=EBOSESyhAAAA:8 a=8AHkEIZyAAAA:8 a=gANikGo4FuUA:10 a=EmoAjJ3AHbWpau0xM8MA:9 a=wPNLvfGTeEIA:10 a=0nF1XD0wxitMEM03M9B4ZQ==:117 |
| X-AUTH | mrabarnett:2500 |
| Date | Mon, 29 Oct 2012 03:35:27 +0000 |
| From | MRAB <python@mrabarnett.plus.com> |
| User-Agent | Mozilla/5.0 (Windows NT 5.1; rv:16.0) Gecko/20121010 Thunderbird/16.0.1 |
| MIME-Version | 1.0 |
| To | python-list@python.org |
| Subject | Re: question on subprogram parameter |
| References | <2a501243-836f-417f-b67a-365c0c777ddb@i2g2000pbi.googlegroups.com> |
| In-Reply-To | <2a501243-836f-417f-b67a-365c0c777ddb@i2g2000pbi.googlegroups.com> |
| Content-Type | text/plain; charset=ISO-8859-1; format=flowed |
| Content-Transfer-Encoding | 7bit |
| X-BeenThere | python-list@python.org |
| X-Mailman-Version | 2.1.15 |
| Precedence | list |
| Reply-To | python-list@python.org |
| List-Id | General discussion list for the Python programming language <python-list.python.org> |
| List-Unsubscribe | <http://mail.python.org/mailman/options/python-list>, <mailto:python-list-request@python.org?subject=unsubscribe> |
| List-Archive | <http://mail.python.org/pipermail/python-list/> |
| List-Post | <mailto:python-list@python.org> |
| List-Help | <mailto:python-list-request@python.org?subject=help> |
| List-Subscribe | <http://mail.python.org/mailman/listinfo/python-list>, <mailto:python-list-request@python.org?subject=subscribe> |
| Newsgroups | comp.lang.python |
| Message-ID | <mailman.2985.1351481728.27098.python-list@python.org> (permalink) |
| Lines | 24 |
| NNTP-Posting-Host | 2001:888:2000:d::a6 |
| X-Trace | 1351481728 news.xs4all.nl 6958 [2001:888:2000:d::a6]:34821 |
| X-Complaints-To | abuse@xs4all.nl |
| Xref | csiph.com comp.lang.python:32330 |
Show key headers only | View raw
On 2012-10-29 03:03, skyworld wrote: > Hi, > > I'm studying python now and I saw a piece of code like this: > > def storeDbase(db, dbfilename=dbfilename): > ..... > dbfile=open(dbfilename,'w') > for key in db: > print(key, file=dbfile) > > > can anybody help me to understand what does this "file=dbfile" mean > and what is its function? thanks. > It's a keyword parameter. Normally 'print' sends its output to the standard output (usually it's the screen). Adding 'file=dbfile' tells it to send its output to the file referred to by 'dbfile' instead. It's all in the documentation!
Back to comp.lang.python | Previous | Next — Previous in thread | Find similar | Unroll thread
question on subprogram parameter skyworld <chenyong20000@gmail.com> - 2012-10-28 20:03 -0700 Re: question on subprogram parameter MRAB <python@mrabarnett.plus.com> - 2012-10-29 03:35 +0000
csiph-web