Path: csiph.com!usenet.pasdenom.info!news.etla.org!news.stack.nl!newsfeed.xs4all.nl!newsfeed1.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.000 X-Spam-Evidence: '*H*': 1.00; '*S*': 0.00; 'elif': 0.05; 'float': 0.07; 'none,': 0.07; 'data:': 0.09; 'expression:': 0.09; 'false.': 0.09; 'formatting': 0.09; 'plug': 0.09; 'received:80.91': 0.09; 'received:80.91.229': 0.09; 'received:gmane.org': 0.09; 'received:list': 0.09; 'subject:number': 0.09; 'way:': 0.09; 'def': 0.12; '(100,': 0.16; 'evaluates': 0.16; 'received:80.91.229.3': 0.16; 'received:dip.t-dialin.net': 0.16; 'received:plane.gmane.org': 0.16; 'received:t-dialin.net': 0.16; 'row)': 0.16; 'spec):': 0.16; 'str):': 0.16; 'ternary': 0.16; 'typeerror:': 0.16; 'wrote:': 0.18; 'subject:need': 0.19; 'fit': 0.20; 'header:User-Agent:1': 0.23; 'logical': 0.24; 'skip:{ 20': 0.24; 'header:X-Complaints-To:1': 0.27; 'idea': 0.28; 'rest': 0.29; 'chris': 0.29; 'skip:( 20': 0.30; 'gives': 0.31; 'code': 0.31; 'apparently': 0.31; 'operators': 0.31; 'writes:': 0.31; 'class': 0.32; 'skip:_ 10': 0.34; "can't": 0.35; 'skip:s 30': 0.35; 'but': 0.35; 'to:addr:python-list': 0.38; 'to:addr:python.org': 0.39; 'received:org': 0.40; 'how': 0.40; 'skip:u 10': 0.60; 'easy': 0.60; 'expression': 0.60; 'tell': 0.60; 'first': 0.61; 'self.value': 0.84; 'subject:nothing': 0.84; 'working,': 0.84 X-Injected-Via-Gmane: http://gmane.org/ To: python-list@python.org From: Peter Otten <__peter__@web.de> Subject: Re: I need a neat way to print nothing or a number Date: Tue, 26 Mar 2013 18:22:21 +0100 Organization: None References: Mime-Version: 1.0 Content-Type: text/plain; charset="ISO-8859-1" Content-Transfer-Encoding: 7Bit X-Gmane-NNTP-Posting-Host: p5084a8f4.dip.t-dialin.net User-Agent: KNode/4.7.3 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: 47 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1364318537 news.xs4all.nl 6940 [2001:888:2000:d::a6]:38274 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:41927 Wolfgang Maier wrote: > Chris Angelico gmail.com> writes: > >> >> Try printing out this expression: >> >> "%.2f"%value if value else '' >> >> Without the rest of your code I can't tell you how to plug that in, >> but a ternary expression is a good fit here. >> >> ChrisA >> > > Unfortunately, that's not working, but gives a TypeError: a float is > required when the first value evaluates to False. > Apparently it's not that easy to combine number formatting with logical > operators - the same happens with my idea ('{:.2f}').format(value or ''). Here's a round-about way: class Prepare: def __init__(self, value): self.value = value def __format__(self, spec): if self.value is None or self.value == 0: return format(0.0, spec).replace(".", " ").replace("0", " ") elif isinstance(self.value, str): return self.value.rjust(len(format(0.0, spec))) return format(self.value, spec) def prepare(row): return map(Prepare, row) data = [ ("Credit", "Debit", "Description"), (100, 0, "Initial balance"), (123.45, None, "Payment for cabbages"), (0.0, 202.0, "Telephone bill"), ] for row in data: print("{:10.2f} {:10.2f} {}".format(*prepare(row)))