Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #5383
| Path | csiph.com!x330-a1.tempe.blueboxinc.net!usenet.pasdenom.info!aioe.org!news.stack.nl!newsfeed.xs4all.nl!newsfeed6.news.xs4all.nl!xs4all!post.news.xs4all.nl!not-for-mail |
|---|---|
| Return-Path | <python-python-list@m.gmane.org> |
| X-Original-To | python-list@python.org |
| Delivered-To | python-list@mail.python.org |
| X-Spam-Status | OK 0.000 |
| X-Spam-Evidence | '*H*': 1.00; '*S*': 0.00; 'subject:" ': 0.03; 'escape': 0.04; 'terry': 0.07; 'python': 0.07; 'cvs': 0.09; 'delimiter': 0.09; 'method:': 0.09; 'received:80.91': 0.09; 'received:80.91.229': 0.09; 'received:80.91.229.12': 0.09; 'received:gmane.org': 0.09; 'received:list': 0.09; 'received:lo.gmane.org': 0.09; 'subject:string': 0.09; 'am,': 0.14; 'wrote:': 0.14; 'subject:python': 0.15; '*always*': 0.16; 'delimited': 0.16; 'formats,': 0.16; 'reedy': 0.16; 'semicolon': 0.16; 'jan': 0.22; 'subject:list': 0.22; 'code': 0.22; 'header:In- Reply-To:1': 0.22; 'loop': 0.22; 'typically': 0.24; 'extract': 0.25; 'string': 0.29; 'fri,': 0.29; 'nobody': 0.29; 'item,': 0.31; 'match': 0.31; 'to:addr:python-list': 0.32; 'expression': 0.33; 'things': 0.33; 'header:X-Complaints-To:1': 0.34; 'regular': 0.34; 'there': 0.35; 'characters': 0.35; 'header:User-Agent:1': 0.35; '-0700,': 0.35; 'items.': 0.35; 'module.': 0.35; 'list.': 0.35; 'doing': 0.36; 'allow': 0.36; 'some': 0.37; 'it?': 0.37; 'skip:" 20': 0.38; 'received:org': 0.38; 'to:addr:python.org': 0.39; 'where': 0.39; 'header:Mime-Version:1': 0.39; 'how': 0.39; 'header:Received:5': 0.40; '2011': 0.62; 'experts': 0.64; 'below.': 0.64; 'subject:best': 0.93 |
| X-Injected-Via-Gmane | http://gmane.org/ |
| To | python-list@python.org |
| From | Terry Reedy <tjreedy@udel.edu> |
| Subject | Re: How best to convert a string "list" to a python list |
| Date | Sat, 14 May 2011 15:59:33 -0400 |
| References | <2efc3a05-22e5-46db-bd22-c95221bbd7b2@k16g2000yqm.googlegroups.com> <pan.2011.05.14.08.40.47.47000@nowhere.com> |
| Mime-Version | 1.0 |
| Content-Type | text/plain; charset=ISO-8859-1; format=flowed |
| Content-Transfer-Encoding | 7bit |
| X-Gmane-NNTP-Posting-Host | rain.gmane.org |
| User-Agent | Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.2.17) Gecko/20110414 Lightning/1.0b2 Thunderbird/3.1.10 |
| In-Reply-To | <pan.2011.05.14.08.40.47.47000@nowhere.com> |
| X-BeenThere | python-list@python.org |
| X-Mailman-Version | 2.1.12 |
| 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.1560.1305403210.9059.python-list@python.org> (permalink) |
| Lines | 26 |
| NNTP-Posting-Host | 82.94.164.166 |
| X-Trace | 1305403211 news.xs4all.nl 41113 [::ffff:82.94.164.166]:58300 |
| X-Complaints-To | abuse@xs4all.nl |
| Xref | x330-a1.tempe.blueboxinc.net comp.lang.python:5383 |
Show key headers only | View raw
On 5/14/2011 4:41 AM, Nobody wrote:
> On Fri, 13 May 2011 10:15:29 -0700, noydb wrote:
>
>> I want some code to take the items in a semi-colon-delimted string "list"
>> and places each in a python list. I came up with below. In the name of
>> learning how to do things properly, do you experts have a better way of
>> doing it?
>
>> x = "red;blue;green;yellow" ## string of semi-colon delimited colors
>
> Provided that a semicolon is *always* a delimiter, just use the .split()
> method:
>
> color_list = x.split(";")
>
> For more complex formats, where there are quote and/or escape characters
> which allow the delimiter to occur as part of an item, you typically need
> to use a regular expression to match everything up to the next delimiter,
> and do this in a loop to extract the individual items.
Or, for some formats, use the cvs module.
--
Terry Jan Reedy
Back to comp.lang.python | Previous | Next — Previous in thread | Find similar | Unroll thread
How best to convert a string "list" to a python list noydb <jenn.duerr@gmail.com> - 2011-05-13 10:15 -0700
Re: How best to convert a string "list" to a python list Jerry Hill <malaclypse2@gmail.com> - 2011-05-13 13:30 -0400
Re: How best to convert a string "list" to a python list MRAB <python@mrabarnett.plus.com> - 2011-05-13 18:36 +0100
Re: How best to convert a string "list" to a python list Redcat <redcat@catfolks.net> - 2011-05-13 19:26 +0000
Re: How best to convert a string "list" to a python list Nobody <nobody@nowhere.com> - 2011-05-14 09:41 +0100
Re: How best to convert a string "list" to a python list Daniel Kluev <dan.kluev@gmail.com> - 2011-05-14 21:16 +1100
Re: How best to convert a string "list" to a python list Terry Reedy <tjreedy@udel.edu> - 2011-05-14 15:59 -0400
csiph-web