Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #10552

Re: removing nested iffs

References <CAAAhF4GeXr+vxNCcJeHm1LfvTciqzSTrp0f3onx020PJSGh4MA@mail.gmail.com> <j0v60g$mci$1@dough.gmane.org>
Date 2011-07-30 07:48 +1000
Subject Re: removing nested iffs
From Chris Angelico <rosuav@gmail.com>
Newsgroups comp.lang.python
Message-ID <mailman.1638.1311976141.1164.python-list@python.org> (permalink)

Show all headers | View raw


On Sat, Jul 30, 2011 at 6:42 AM, Peter Otten <__peter__@web.de> wrote:
> def format_pairs(pairs):
>    for template, value in pairs:
>        if value is None:
>            break
>        yield template.format(value)
>

Cool! May I suggest a trifling change:

def format_pairs(*pairs):
	for template, value in pairs:
		if value is None: break
		yield template.format(value)

That way, the call can dispense with the [] in the argument list. This
is a pretty clean solution though, I like it.

ChrisA

Back to comp.lang.python | Previous | Next | Find similar | Unroll thread


Thread

Re: removing nested iffs Chris Angelico <rosuav@gmail.com> - 2011-07-30 07:48 +1000

csiph-web