Path: csiph.com!news.mixmin.net!weretis.net!feeder4.news.weretis.net!feeder2.ecngs.de!ecngs!feeder.ecngs.de!border1.nntp.ams1.giganews.com!nntp.giganews.com!newsfeed.xs4all.nl!newsfeed8.news.xs4all.nl!nzpost1.xs4all.net!not-for-mail Return-Path: 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:Python': 0.05; 'constructor': 0.07; 'list?': 0.07; 'strings.': 0.07; 'message- id:@4ax.com': 0.09; 'received:80.91': 0.09; 'received:80.91.229': 0.09; 'received:gmane.org': 0.09; 'received:list': 0.09; 'splitting': 0.09; 'subject:into': 0.09; 'thu,': 0.15; 'intervening': 0.16; 'received:80.91.229.3': 0.16; 'received:plane.gmane.org': 0.16; 'string': 0.17; 'string,': 0.18; 'url:home': 0.18; '>>>': 0.20; '2015': 0.20; 'sep': 0.22; 'header:X-Complaints-To:1': 0.26; 'character.': 0.29; 'convert': 0.29; "i'm": 0.30; 'list': 0.34; 'something': 0.35; 'should': 0.36; 'there': 0.36; 'to:addr:python-list': 0.36; 'subject:?': 0.36; 'subject:: ': 0.37; 'received:org': 0.37; 'charset:us- ascii': 0.37; 'wanted': 0.37; 'why': 0.39; 'takes': 0.39; 'to:addr:python.org': 0.40; 'results': 0.66; 'dennis': 0.91; 'received:108': 0.93 X-Injected-Via-Gmane: http://gmane.org/ To: python-list@python.org From: Dennis Lee Bieber Subject: Re: Python, convert an integer into an index? Date: Thu, 24 Sep 2015 21:26:04 -0400 Organization: IISS Elusive Unicorn References: <201509222221.t8MMLMi5015927@fido.openend.se> <5603FAEE.1060101@mrabarnett.plus.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Gmane-NNTP-Posting-Host: adsl-108-68-178-61.dsl.klmzmi.sbcglobal.net X-Newsreader: Forte Agent 6.00/32.1186 X-No-Archive: YES X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.20+ 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: 24 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1443144375 news.xs4all.nl 23795 [2001:888:2000:d::a6]:56774 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:97110 On Thu, 24 Sep 2015 07:45:50 -0600, declaimed the following: >>> I'm suprised. Why not just: >>> >>> list(str(results)) >>> >>> In other words, is there something else the list constructor should do >>> with a string other than convert it to a list? >>> >> The OP wanted the result to be a list of ints, not a list of strings. > >[int(x) for x in list(str(results))] results is already a string, so why convert it to a string, and list() is just splitting the string on each character. [int(x) for x in results] takes out all the intervening crud. -- Wulfraed Dennis Lee Bieber AF6VN wlfraed@ix.netcom.com HTTP://wlfraed.home.netcom.com/