Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #45451
| Path | csiph.com!usenet.pasdenom.info!weretis.net!feeder4.news.weretis.net!rt.uk.eu.org!newsfeed.xs4all.nl!newsfeed2.news.xs4all.nl!xs4all!post.news.xs4all.nl!not-for-mail |
|---|---|
| Return-Path | <skip.montanaro@gmail.com> |
| X-Original-To | python-list@python.org |
| Delivered-To | python-list@mail.python.org |
| X-Spam-Status | OK 0.007 |
| X-Spam-Evidence | '*H*': 0.99; '*S*': 0.00; 'subject:Number': 0.09; 'subject:module': 0.09; 'subject:using': 0.09; 'cc:addr:python- list': 0.11; 'from:addr:pobox.com': 0.16; 'from:addr:skip': 0.16; 'subject:CSV': 0.16; 'sender:addr:gmail.com': 0.17; 'cc:addr:python.org': 0.22; 'skip': 0.24; 'cc:2**0': 0.24; 'cc:no real name:2**0': 0.24; 'header:In-Reply-To:1': 0.27; 'message- id:@mail.gmail.com': 0.30; 'received:google.com': 0.35; 'rather': 0.38; 'to:addr:gmail.com': 0.65 |
| DKIM-Signature | v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:x-received:sender:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:cc:content-type; bh=vnUPDWbkAqx+XgELcD4mi+j69PfkqziEvRe+FBaJBhw=; b=qcxxX2C5g3MCZmeWzlfuqcxYew2pNPjbP6GEwA6FB/1pjXvE1F0UMr8CMcDh/CA3wE i/tkVc7Qms3ooOnF1xHdP8F2ZzJc6V9rANYc67srCTIAMgqILgEMUvgTBtfCyFkUaj5U IGTww497luamM3QM2JruxH1R9s48H7419gdgO/QwzttEOUWOUn2ae3UZ9/2a+8jFQ9yP TiunObaL+rWJVndrgClNvx55A3G4AjpQCw1ymSPd8jfgg0Xgj06FL4DOuwtjAlCyZ24r JWTIxHBHlNEAgE3BqIQCOHU+WkqFd81mmROvvpy9bDdSTtgqnaO0CDjOr9h90wzp8uJl 8zeQ== |
| MIME-Version | 1.0 |
| X-Received | by 10.50.176.164 with SMTP id cj4mr10559817igc.66.1368731309384; Thu, 16 May 2013 12:08:29 -0700 (PDT) |
| Sender | skip.montanaro@gmail.com |
| In-Reply-To | <2cd2fe5b-a242-442e-a3fa-e0c5588a370a@googlegroups.com> |
| References | <5f4aec0e-5cfa-445f-af50-67cca7caae36@googlegroups.com> <2cd2fe5b-a242-442e-a3fa-e0c5588a370a@googlegroups.com> |
| Date | Thu, 16 May 2013 14:08:29 -0500 |
| X-Google-Sender-Auth | tkSCviT1SBx4bUp7RhETlDUcHpQ |
| Subject | Re: Number of cells, using CSV module |
| From | Skip Montanaro <skip@pobox.com> |
| To | tunacubes@gmail.com |
| Content-Type | text/plain; charset=UTF-8 |
| Cc | python-list@python.org |
| X-BeenThere | python-list@python.org |
| X-Mailman-Version | 2.1.15 |
| Precedence | list |
| 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.1771.1368731318.3114.python-list@python.org> (permalink) |
| Lines | 14 |
| NNTP-Posting-Host | 2001:888:2000:d::a6 |
| X-Trace | 1368731318 news.xs4all.nl 15985 [2001:888:2000:d::a6]:53008 |
| X-Complaints-To | abuse@xs4all.nl |
| Xref | csiph.com comp.lang.python:45451 |
Show key headers only | View raw
> So rather than
>>a
>>b
>>c
>>d
>>e
>>f
> I would get [a, b, c, d, e, f]
all_items = []
for row in reader:
all_items.append(row[0])
Skip
Back to comp.lang.python | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
Number of cells, using CSV module tunacubes@gmail.com - 2013-05-16 11:29 -0700
Re: Number of cells, using CSV module Skip Montanaro <skip@pobox.com> - 2013-05-16 13:40 -0500
Re: Number of cells, using CSV module tunacubes@gmail.com - 2013-05-16 11:50 -0700
Re: Number of cells, using CSV module Skip Montanaro <skip@pobox.com> - 2013-05-16 14:07 -0500
Re: Number of cells, using CSV module Tim Chase <python.list@tim.thechases.com> - 2013-05-16 15:00 -0500
Re: Number of cells, using CSV module tunacubes@gmail.com - 2013-05-16 11:53 -0700
Re: Number of cells, using CSV module Skip Montanaro <skip@pobox.com> - 2013-05-16 14:08 -0500
Re: Number of cells, using CSV module Tim Chase <python.list@tim.thechases.com> - 2013-05-16 15:01 -0500
Re: Number of cells, using CSV module tunacubes@gmail.com - 2013-05-16 13:11 -0700
csiph-web