Path: csiph.com!v102.xanadu-bbs.net!xanadu-bbs.net!eternal-september.org!feeder.eternal-september.org!news.stack.nl!newsfeed.xs4all.nl!newsfeed2a.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.002 X-Spam-Evidence: '*H*': 1.00; '*S*': 0.00; 'exercise': 0.04; 'output': 0.05; 'received:80.91': 0.09; 'received:80.91.229': 0.09; 'received:gmane.org': 0.09; 'received:list': 0.09; 'strings.': 0.09; 'def': 0.12; 'jan': 0.12; 'random': 0.14; '"your': 0.16; 'balls': 0.16; 'btw': 0.16; 'pairs': 0.16; 'range(0,': 0.16; 'received:80.91.229.3': 0.16; 'received:plane.gmane.org': 0.16; 'reedy': 0.16; 'url:openbookproject': 0.16; 'width.': 0.16; 'wrote:': 0.18; 'trying': 0.19; 'import': 0.22; 'print': 0.22; 'header:User-Agent:1': 0.23; 'example.': 0.24; 'please?': 0.24; 'header:X-Complaints-To:1': 0.27; 'header:In-Reply-To:1': 0.27; 'quotes': 0.31; 'figure': 0.32; 'something': 0.35; 'but': 0.35; 'really': 0.36; 'choosing': 0.36; 'wrong': 0.37; 'to:addr:python- list': 0.38; 'pm,': 0.38; 'received:71': 0.39; 'to:addr:python.org': 0.39; 'skip:p 20': 0.39; 'received:org': 0.40; 'how': 0.40; 'up,': 0.60; 'numbers': 0.61; 'choose': 0.64; 'different': 0.65; 'to,': 0.72; 'subject:This': 0.74; 'received:fios.verizon.net': 0.84; 'url:php': 0.85; 'numbers:': 0.91 X-Injected-Via-Gmane: http://gmane.org/ To: python-list@python.org From: Terry Reedy Subject: Re: This formating is really tricky Date: Mon, 25 Aug 2014 18:22:35 -0400 References: Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Gmane-NNTP-Posting-Host: pool-71-175-90-87.phlapa.fios.verizon.net User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:24.0) Gecko/20100101 Thunderbird/24.6.0 In-Reply-To: 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: 52 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1409005368 news.xs4all.nl 2919 [2001:888:2000:d::a6]:37533 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:77006 On 8/25/2014 4:14 PM, Seymore4Head wrote: > import random > sets=3 > for x in range(0, sets): > pb2=random.choice([1-53]) You want random.randint(1, 53) ... > alist = sorted([pb1, pb2, pb3, pb4, pb5]) > print ("Your numbers: {} Powerball: {}".format(alist, pb6)) > > I am trying this example. The program works, but the numbers don't > line up if the number of digits are different sizes. > http://openbookproject.net/pybiblio/practice/wilson/powerball.php To get them to line up, you have to format each one to the same width. > Suggestion please? > BTW the exercise instructions say to use the choice function. import random sets=3 def ran53(): return random.randint(1, 53) f1 = '{:2d}' bform = "Your numbers: [{0}, {0}, {0}, {0}, {0}]".format(f1) pform = " Powerball: {0}".format(f1) for x in range(0, sets): balls = sorted(ran53() for i in range(5)) print(bform.format(*balls), pform.format(ran53())) > BTW the exercise instructions say to use the choice function. I am not a fan of exercises that say to do something the wrong way, but if you really had to, n54 = [i for i in range(1, 54)] random.choice(n54) An alternative to choosing numbers is to choose from 2-char number strings. n53 = ['%2d' % i for i in range(1, 54)] But then you have to figure out how to avoid having 6 pairs of quotes in the output ;=) -- Terry Jan Reedy