Path: csiph.com!usenet.pasdenom.info!goblin1!goblin2!goblin.stu.neva.ru!feeder1.cambriumusenet.nl!feed.tweaknews.nl!194.109.133.85.MISMATCH!newsfeed.xs4all.nl!newsfeed6.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.013 X-Spam-Evidence: '*H*': 0.97; '*S*': 0.00; 'skip:[ 20': 0.03; 'used.': 0.07; 'python': 0.09; '"r")': 0.09; 'subject:into': 0.09; 'assume': 0.11; 'although,': 0.16; 'deprecated.': 0.16; 'from:addr:mrabarnett.plus.com': 0.16; 'from:addr:python': 0.16; 'from:name:mrab': 0.16; 'guessing': 0.16; 'message- id:@mrabarnett.plus.com': 0.16; 'oct': 0.16; 'received:84.93': 0.16; 'received:84.93.230': 0.16; 'replaces': 0.16; 'subject:array': 0.16; "{'a':": 0.16; 'wrote:': 0.17; 'input': 0.18; 'code.': 0.20; 'question.': 0.20; 'parse': 0.22; "i'd": 0.22; 'cheers,': 0.23; 'example': 0.23; "python's": 0.23; 'header :In-Reply-To:1': 0.25; 'header:User-Agent:1': 0.26; 'implemented': 0.27; 'question': 0.27; 'subject:list': 0.28; 'chris': 0.28; 'arrays': 0.29; 'received:192.168.1.3': 0.29; 'strings,': 0.29; "i'm": 0.29; 'lists': 0.31; 'code': 0.31; 'asking': 0.32; 'url:python': 0.32; 'received:84': 0.32; 'structure': 0.32; 'to:addr:python-list': 0.33; 'wrong': 0.34; 'list': 0.35; 'lists.': 0.35; 'pm,': 0.35; 'list.': 0.35; 'url:org': 0.36; 'url:library': 0.36; "wasn't": 0.36; 'method': 0.36; 'turn': 0.36; 'why': 0.37; 'rather': 0.37; 'subject:: ': 0.38; 'mean': 0.38; 'skip:l 20': 0.38; 'skip:o 20': 0.38; 'some': 0.38; 'possible.': 0.38; 'url:docs': 0.38; 'to:addr:python.org': 0.39; 'received:192': 0.39; 'received:192.168': 0.40; 'most': 0.61; 'further': 0.61; 'first': 0.61; 'letters': 0.62; 'relatively': 0.62; 'between': 0.63; 'safe': 0.63; 'worth': 0.63; 'different': 0.63; 'more': 0.63; 'improvements': 0.65; 'header:Reply-To:1': 0.68; 'obtained': 0.71; 'suited': 0.71; 'reply-to:no real name:2**0': 0.72; 'p.s.:': 0.84; 'reply-to:addr:python.org': 0.84; 'url:tutorial': 0.93 X-CM-Score: 0.00 X-CNFS-Analysis: v=2.0 cv=YaM/Fntf c=1 sm=1 a=0nF1XD0wxitMEM03M9B4ZQ==:17 a=b2nRVtXOy8EA:10 a=OElLmtTeHxIA:10 a=ihvODaAuJD4A:10 a=OUOv7kDek9cA:10 a=8nJEP1OIZ-IA:10 a=EBOSESyhAAAA:8 a=8AHkEIZyAAAA:8 a=ek2IK7vg1_wA:10 a=pGLkceISAAAA:8 a=GALf16dVu9QN-WVjaeYA:9 a=wPNLvfGTeEIA:10 a=8P1g9QNYJ7gA:10 a=0WaYefBsumAA:10 a=MSl-tDqOz04A:10 a=0nF1XD0wxitMEM03M9B4ZQ==:117 X-AUTH: mrabarnett:2500 Date: Wed, 24 Oct 2012 18:05:43 +0100 From: MRAB 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: turn list of letters into an array of integers References: <07073002-d79f-46f6-83fc-8d20c51b39c3@googlegroups.com> In-Reply-To: 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 List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: Lines: 59 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1351098350 news.xs4all.nl 6917 [2001:888:2000:d::a6]:59130 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:32057 On 2012-10-24 07:07, Chris Rebert wrote: > On Tue, Oct 23, 2012 at 10:23 PM, seektime wrote: >> Here's some example code. The input is a list which is a "matrix" of letters: >> a b a >> b b a >> >> and I'd like to turn this into a Python array: > > You mean a Python list. The datatype Python calls an `array` is very > different and relatively uncommonly used. > Although, confusingly, Python's lists are implemented using C arrays > rather than linked lists. > >> 1 2 1 >> 2 2 1 >> >> so 1 replaces a, and 2 replaces b. Here's the code I have so far: >> >>>>> L=['a b a\n','b b a\n'] > >>>>> seq >> '1 2 1\n 2 2 1\n' >> >> My question is how can I turn "seq" into a python array? > > I'd say you're asking the wrong question. The better question is "Why > wasn't the result a list in the first place?". Many transformations > are cumbersome to express over just strings, which is why the first > job of most programs is to parse their input into a more convenient > structure that is suited to their main task(s). > > This (along with some other improvements) leads to a better, somewhat > different program/algorithm: > > letter2number = {'a': 1, 'b': 2} > with open("path/to/file.txt", "r") as f: > result = [[letter2number[letter] for letter in line.strip().split()] for line in f] > If you're using .split() then you don't need to use .strip() as well: result = [[letter2number[letter] for letter in line.split()] for line in f] > If it's safe to assume that the correspondence between the letters and > numbers isn't completely arbitrary, some further improvements are also > possible. > > Some relevant docs: > http://docs.python.org/library/stdtypes.html#string-methods > http://docs.python.org/tutorial/datastructures.html#list-comprehensions > > Cheers, > Chris > > P.S.: I'm guessing you obtained `L` from file.readlines() or similar; > it is worth noting for future reference that the readlines() method is > considered somewhat deprecated. >