Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #101021
| Path | csiph.com!fu-berlin.de!uni-berlin.de!not-for-mail |
|---|---|
| From | Ian Kelly <ian.g.kelly@gmail.com> |
| Newsgroups | comp.lang.python |
| Subject | Re: Newbie: How to convert a tuple of strings into a tuple of ints |
| Date | Wed, 30 Dec 2015 16:00:29 -0700 |
| Lines | 10 |
| Message-ID | <mailman.91.1451516472.11925.python-list@python.org> (permalink) |
| References | <fcd51ccc-b087-4147-a3e2-276b2f3052f4@googlegroups.com> |
| Mime-Version | 1.0 |
| Content-Type | text/plain; charset=UTF-8 |
| X-Trace | news.uni-berlin.de x3x/hJBoThO7sf4u2wNR/QGxDco39jElhOFQMQsT35DA== |
| Return-Path | <ian.g.kelly@gmail.com> |
| X-Original-To | python-list@python.org |
| Delivered-To | python-list@mail.python.org |
| X-Spam-Status | OK 0.020 |
| X-Spam-Evidence | '*H*': 0.96; '*S*': 0.00; 'received:209.85.223': 0.03; 'url:pipermail': 0.05; 'subject:How': 0.09; 'subject:into': 0.09; 'wed,': 0.15; 'received:io': 0.16; 'received:psf.io': 0.16; 'wrote:': 0.16; '2015': 0.20; 'dec': 0.23; 'header:In-Reply-To:1': 0.24; 'message-id:@mail.gmail.com': 0.27; 'url:python': 0.33; 'received:google.com': 0.35; 'url:org': 0.36; 'received:209.85': 0.36; 'to:addr:python-list': 0.36; 'pm,': 0.36; 'subject:: ': 0.37; 'received:209': 0.38; 'url:mail': 0.40; 'to:addr:python.org': 0.40; '30,': 0.63; 'here': 0.66; 'deja': 0.84; 'to:name:python': 0.84 |
| DKIM-Signature | v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :content-type; bh=faq4cwVzsZs/XRmeRXmLY6uqbs2jb7O8Liegf1iL7FY=; b=M7qJI6ep1+D9sw12dCLPKp9EIsixTd5MOUoHwRzr0Bh0dPNBMrZODaKfT77Zwd12k7 dsCmaWLql0sWcGgL6GCiLf8sCN/xIwBuv/3YkDARwoHUToy2awoMB61Dh14PxE6ntY+9 HPZiEQ31cFPpFOb958QMUD9TQ1NVCE+JYlluxqlvXPbnoeOJK6JdBJ26oKh68cEU+Dy+ IoF6qotgk5K8md9s4IqbUvMOvfaSGEVafqHkO71BVd/2OFDQFlzoWxi0touyCzIvIXqi E71IxrabSfLlbPTNK6zO6+P0beizMaPKKGUi30HHNr55rEgK5um2CBCFqQ1zzWnG2yH4 IHjA== |
| X-Received | by 10.107.11.68 with SMTP id v65mr62585972ioi.188.1451516468816; Wed, 30 Dec 2015 15:01:08 -0800 (PST) |
| In-Reply-To | <fcd51ccc-b087-4147-a3e2-276b2f3052f4@googlegroups.com> |
| X-BeenThere | python-list@python.org |
| X-Mailman-Version | 2.1.20+ |
| Precedence | list |
| List-Id | General discussion list for the Python programming language <python-list.python.org> |
| List-Unsubscribe | <https://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 | <https://mail.python.org/mailman/listinfo/python-list>, <mailto:python-list-request@python.org?subject=subscribe> |
| Xref | csiph.com comp.lang.python:101021 |
Show key headers only | View raw
On Wed, Dec 30, 2015 at 3:46 PM, <otaksoftspamtrap@gmail.com> wrote:
> How do I get from here
>
> t = ('1024', '1280')
>
> to
>
> t = (1024, 1280)
Deja vu: https://mail.python.org/pipermail/python-list/2015-December/701017.html
Back to comp.lang.python | Previous | Next — Previous in thread | Find similar | Unroll thread
Newbie: How to convert a tuple of strings into a tuple of ints otaksoftspamtrap@gmail.com - 2015-12-30 14:46 -0800
Re: Newbie: How to convert a tuple of strings into a tuple of ints Chris Angelico <rosuav@gmail.com> - 2015-12-31 09:52 +1100
Re: Newbie: How to convert a tuple of strings into a tuple of ints Ben Finney <ben+python@benfinney.id.au> - 2015-12-31 09:57 +1100
Re: Newbie: How to convert a tuple of strings into a tuple of ints otaksoftspamtrap@gmail.com - 2015-12-30 15:00 -0800
Re: Newbie: How to convert a tuple of strings into a tuple of ints Ian Kelly <ian.g.kelly@gmail.com> - 2015-12-30 16:00 -0700
csiph-web