Path: csiph.com!usenet.pasdenom.info!weretis.net!feeder4.news.weretis.net!rt.uk.eu.org!newsfeed.xs4all.nl!newsfeed3.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.120 X-Spam-Level: * X-Spam-Evidence: '*H*': 0.88; '*S*': 0.12; '(python': 0.07; '(so': 0.07; 'cc:addr:python-list': 0.11; 'digits.': 0.16; 'long).': 0.16; 'wrote:': 0.18; 'cc:addr:python.org': 0.22; 'unicode': 0.24; 'math': 0.24; 'cc:2**0': 0.24; 'header:In-Reply-To:1': 0.27; 'message-id:@mail.gmail.com': 0.30; 'running': 0.33; 'received:google.com': 0.35; 'hope': 0.61; 'july': 0.63; 'side': 0.67; 'words)': 0.84; 'luck': 0.93; '2013': 0.98 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 :cc:content-type; bh=BMSmakIRoXuWAom02tRynkr8BmMDqi3UbWbn4Wh+ZW8=; b=Wpiih4T8HeAO5lM76GvGrhs9QHVJVOzvFFWFGEYR4ku5BUuqcG6gopYScCYjbplVsM ycCFDfu3F6u+JMwbQUikrj1cCUAwYsTcR+19xCHWyP8NvY5l+/MhmzuuWaZqqB4BFqe8 kHg0I7F4YsXrlq96x9gERtApOQ/OqmDGE+4G2rBSqYD7PBXvwzD/3YHFzU2R7725mLKk Xl8Gy6Uhfzhp6zE96Q4wK1owmK2THOIOMJauQRvyKRyttgvycOLiaDK4YuHIY5VUJLe3 dwz7imew+dP1xqCcqfanNb5TY1nNymuGZoUnZavei/DYAxZZ/IuOwN6fv40lz3DNlzoL 1tpg== X-Received: by 10.112.52.97 with SMTP id s1mr4519945lbo.8.1372982713059; Thu, 04 Jul 2013 17:05:13 -0700 (PDT) MIME-Version: 1.0 In-Reply-To: References: <51d4eb9c$0$29999$c3e8da3$5496439d@news.astraweb.com> <51d508ed$0$6512$c3e8da3$5496439d@news.astraweb.com> From: Joshua Landau Date: Fri, 5 Jul 2013 01:04:32 +0100 Subject: Re: Default scope of variables To: Rotwang Content-Type: text/plain; charset=UTF-8 Cc: python-list X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.15 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: 17 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1372982716 news.xs4all.nl 15955 [2001:888:2000:d::a6]:44253 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:49910 On 4 July 2013 17:54, Rotwang wrote: > 53*(63**1000000 - 1)//62 Or about 10**10**6.255 (so about 1.80M digits long). For the unicode side (Python 3, in other words) and reusing your math (ya better hope it's right!), you are talking: 97812*((97812+2020)**1000000 - 1)/(97812+2020-1) Or about 10**10**6.699 Which has about 5.00M digits. Good luck running out.