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


Groups > comp.lang.python > #98943

Re: Is there any reason to introduce this intermediate variable (sz)?

From John Gordon <gordon@panix.com>
Newsgroups comp.lang.python
Subject Re: Is there any reason to introduce this intermediate variable (sz)?
Date 2015-11-17 22:20 +0000
Organization PANIX Public Access Internet and UNIX, NYC
Message-ID <n2g97m$qf6$1@reader1.panix.com> (permalink)
References <bad9ac66-38aa-4445-a486-6df0e9c7752c@googlegroups.com> <n2g4l9$dqh$1@reader1.panix.com> <c9b5f60f-b1ec-4857-bb02-2748a28b5460@googlegroups.com>

Show all headers | View raw


In <c9b5f60f-b1ec-4857-bb02-2748a28b5460@googlegroups.com> fl <rxjwg98@gmail.com> writes:

> I still don't see the necessity of 'sz'. Thanks,

sz isn't required.  You can use (n_iter,) in place of sz.

However, as I posted earlier, sz is shorter so it might make your code
easier to read.

Using sz can also lead to easier code maintenance.  If the contents of
the tuple were ever to change, it would be much easier to simply change
it in once place (the definition of sz), rather than having to edit
several different occurrences of (n_iter,) in your code.


-- 
John Gordon                   A is for Amy, who fell down the stairs
gordon@panix.com              B is for Basil, assaulted by bears
                                -- Edward Gorey, "The Gashlycrumb Tinies"

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


Thread

Is there any reason to introduce this intermediate variable (sz)? fl <rxjwg98@gmail.com> - 2015-11-17 12:51 -0800
  Re: Is there any reason to introduce this intermediate variable (sz)? John Gordon <gordon@panix.com> - 2015-11-17 21:02 +0000
    Re: Is there any reason to introduce this intermediate variable (sz)? fl <rxjwg98@gmail.com> - 2015-11-17 13:27 -0800
      Re: Is there any reason to introduce this intermediate variable (sz)? John Gordon <gordon@panix.com> - 2015-11-17 22:20 +0000
      Re: Is there any reason to introduce this intermediate variable (sz)? Mark Lawrence <breamoreboy@yahoo.co.uk> - 2015-11-17 22:33 +0000
  Re: Is there any reason to introduce this intermediate variable (sz)? Dave Farrance <df@see.replyto.invalid> - 2015-11-18 08:05 +0000
  Re: Is there any reason to introduce this intermediate variable (sz)? Terry Reedy <tjreedy@udel.edu> - 2015-11-18 05:02 -0500

csiph-web