On Thu, 14 May 2026 at 06:40, Michael F. Stemper via Python-list <[email protected]> wrote: > for variable in angles if options.angle else comps: > > What I'd like to know is: Is this an egregious abuse of the > language, or is it perfectly pythonic? > > Opinions, and even violent disagreement, are solicited. >
Perfectly reasonable. You're iterating over this-or-that. ChrisA -- https://mail.python.org/mailman3//lists/python-list.python.org
