Path: csiph.com!v102.xanadu-bbs.net!xanadu-bbs.net!feeder.erje.net!eu.feeder.erje.net!xlned.com!feeder7.xlned.com!newsfeed.xs4all.nl!newsfeed1.news.xs4all.nl!xs4all!newsgate.cistron.nl!newsgate.news.xs4all.nl!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.016 X-Spam-Evidence: '*H*': 0.97; '*S*': 0.00; 'subject:Python': 0.06; 'variables': 0.07; 'subject:help': 0.08; 'string': 0.09; 'cc:addr :python-list': 0.11; 'assume': 0.14; 'integer.': 0.16; 'roy': 0.16; 'seconds.': 0.16; 'specifier': 0.16; 'wrote:': 0.18; 'obviously': 0.18; 'variable': 0.18; 'received:10.0.1': 0.19; 'feb': 0.22; 'cc:addr:python.org': 0.22; 'print': 0.22; 'format,': 0.24; 'cc:2**0': 0.24; 'cc:no real name:2**0': 0.24; 'header:In- Reply-To:1': 0.27; 'needed.': 0.30; 'url:mailman': 0.30; 'url:python': 0.33; 'trouble': 0.34; 'subject:with': 0.35; 'minutes,': 0.36; 'url:listinfo': 0.36; 'subject:?': 0.36; 'received:10.0': 0.36; 'url:org': 0.36; 'seconds': 0.37; 'two': 0.37; 'received:10': 0.37; 'pm,': 0.38; 'sure': 0.39; 'url:mail': 0.40; 'how': 0.40; 'remove': 0.60; 'header:Message-Id:1': 0.63; 'charset:windows-1252': 0.65; 'minutes': 0.67; 'smith': 0.68; 'article': 0.77; '2014,': 0.84; 'scott': 0.93 X-CT-Class: Clean X-CT-Score: 0.00 X-CT-RefID: str=0001.0A020206.52F45D1A.001C,ss=1,re=0.000,fgs=0 X-CT-Spam: 0 X-Authority-Analysis: v=2.0 cv=GKHW5JxK c=1 sm=1 a=MB85R812cvcrhCHz/P2OVA==:17 a=EcIEWpwOQlAA:10 a=G8Uczd0VNMoA:10 a=N659UExz7-8A:10 a=kviXuzpPAAAA:8 a=ONB2eeuiHFIA:10 a=VUfPOBp7AAAA:8 a=8AHkEIZyAAAA:8 a=k-F3Q6aMyXb2vqPEAtAA:9 a=pILNOxqGKmIA:10 a=5hK03km2n30A:10 a=VhVvL8HfBcoA:10 a=4vB-4DCPJfMA:10 a=MB85R812cvcrhCHz/P2OVA==:117 X-CM-Score: 0.00 Authentication-Results: cox.net; auth=pass (PLAIN) smtp.auth=swdunning@cox.net Content-Type: text/plain; charset=windows-1252 Mime-Version: 1.0 (Mac OS X Mail 7.1 \(1827\)) Subject: Re: Python 2.7.6 help with white spaces? From: Scott W Dunning In-Reply-To: Date: Thu, 6 Feb 2014 21:12:08 -0700 Content-Transfer-Encoding: quoted-printable References: To: Roy Smith X-Mailer: Apple Mail (2.1827) Cc: python-list@python.org 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: 37 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1391746338 news.xs4all.nl 2853 [2001:888:2000:d::a6]:33771 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:65588 what exactly is the =93%d:%02d=94% saying? =20 On Feb 6, 2014, at 6:25 PM, Roy Smith wrote: > In article , > Scott W Dunning wrote: >=20 >> I am having trouble figuring out how to remove spaces=8A. >>=20 >> Assume variables exist for minutes and seconds. Each variable is an = integer.=20 >> How would you create a string in the format, >>=20 >> 3:11 >>=20 >> with no spaces. where 3 is minutes and 11 is seconds. >>=20 >>=20 >> Obviously when I=8A >>=20 >> print minutes, =B3:=B2, seconds >>=20 >> I get 3 : 11 >>=20 >> how can I get it to print with no spaces? =20 >>=20 >> 3:11 >=20 > print "%d:%02d" % (minutes, seconds) >=20 > The "02" for the seconds specifier makes sure you get exactly two=20 > digits, with a leading zero if needed. > --=20 > https://mail.python.org/mailman/listinfo/python-list