Path: csiph.com!fu-berlin.de!uni-berlin.de!not-for-mail From: Ben Finney Newsgroups: comp.lang.python Subject: Re: Newbie: How to convert a tuple of strings into a tuple of ints Date: Thu, 31 Dec 2015 09:57:22 +1100 Lines: 45 Message-ID: References: Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Trace: news.uni-berlin.de svoF3NjLB6W8w0N7NyjEDA8pPwjiAm4F0J6ykR9JAttg== Cancel-Lock: sha1:UXHyRFRzsd1nOdHCb1yTOKKafFk= Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.004 X-Spam-Evidence: '*H*': 0.99; '*S*': 0.00; 'assignment': 0.07; 'subject:How': 0.09; '2004': 0.09; 'received:80.91': 0.09; 'received:80.91.229': 0.09; 'received:gmane.org': 0.09; 'received:list': 0.09; 'subject:into': 0.09; 'translate': 0.15; '(more': 0.16; 'map(int,': 0.16; 're-write': 0.16; 'received:80.91.229.3': 0.16; 'received:io': 0.16; 'received:plane.gmane.org': 0.16; 'received:psf.io': 0.16; 'sequence.': 0.16; 'statement.': 0.16; 'statements,': 0.16; 'tuple,': 0.16; 'pass': 0.22; 'header:User-Agent:1': 0.26; 'header:X-Complaints-To:1': 0.26; 'sequence': 0.27; 'function': 0.28; "i'm": 0.30; 'another': 0.32; 'statement': 0.32; 'useful': 0.33; 'item': 0.35; 'but': 0.36; 'to:addr:python-list': 0.36; 'subject:: ': 0.37; 'really': 0.37; 'received:org': 0.37; 'mean': 0.38; 'end': 0.39; 'sure': 0.39; 'to:addr:python.org': 0.40; 'email addr:gmail.com': 0.62; 'more': 0.63; 'different': 0.63; 'statement,': 0.66; 'here': 0.66; '_o__)': 0.84; 'received:125': 0.84; '\xe2\x80\xa6': 0.84; 'sacred': 0.91 X-Injected-Via-Gmane: http://gmane.org/ X-Gmane-NNTP-Posting-Host: jigong.madmonks.org X-Public-Key-ID: 0xAC128405 X-Public-Key-Fingerprint: 517C F14B B2F3 98B0 CB35 4855 B8B2 4C06 AC12 8405 X-Public-Key-URL: http://www.benfinney.id.au/contact/bfinney-pubkey.asc X-Post-From: Ben Finney User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.4 (gnu/linux) 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: , Xref: csiph.com comp.lang.python:101019 otaksoftspamtrap@gmail.com writes: > How do I get from here > > t = ('1024', '1280') > > to > > t = (1024, 1280) Both of those are assignment statements, so I'm not sure what you mean by “get from … to”. To translate one assignment statement to a different assignment statement, re-write the statement. But I think you want to produce a new sequence from an existing sequence. The ‘map’ built-in function is useful for that:: sequence_of_numbers_as_text = ['1024', '1280'] sequence_of_integers = map(int, sequence_of_numbers_as_text) That sequence can then be iterated. Another (more broadly useful) way is to use a generator expression:: sequence_of_integers = (int(item) for item in sequence_of_numbers_as_text) If you really want a tuple, just pass that sequence to the ‘tuple’ callable:: tuple_of_integers = tuple( int(item) for item in sequence_of_numbers_as_text) or:: tuple_of_integers = tuple(map(int, sequence_of_numbers_as_text)) -- \ “Nothing is more sacred than the facts.” —Sam Harris, _The End | `\ of Faith_, 2004 | _o__) | Ben Finney