<p dir="ltr">This seems pretty nonsensical to me. Ternaries are not only used in simple assignments.</p>
<p dir="ltr">E.g. 'myfunc(a, b if pred else c, d)' is common and obvious.</p>
<p dir="ltr">'myfunc(a, b if pred, d)' is strange with no obvious semantics.</p>
<div class="gmail_extra"><br><div class="gmail_quote">On Oct 28, 2016 11:29 AM, "Todd" <<a href="mailto:toddrjen@gmail.com">toddrjen@gmail.com</a>> wrote:<br type="attribution"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr"><div><div><div><div><div>The null-coalescing discussion made me think about the current ternary "x = a if b else c" expression.  In normal "if / else" clauses, the "else" is optional.  I propose doing the same thing with ternary expressions (although I don't know what the result would be called, a "binary expression"?)<br><br></div>The idea would be to allow this syntax:<br><br></div>x = a if b<br><br></div>Which would be equivalent to:<br><br></div>x = a if b else x<br><br></div>I think this would be useful syntax.  In particular, I see it being useful for default value checking, but can also be used to override the result of particular corner cases from functions or methods..<br></div>
<br>______________________________<wbr>_________________<br>
Python-ideas mailing list<br>
<a href="mailto:Python-ideas@python.org">Python-ideas@python.org</a><br>
<a href="https://mail.python.org/mailman/listinfo/python-ideas" rel="noreferrer" target="_blank">https://mail.python.org/<wbr>mailman/listinfo/python-ideas</a><br>
Code of Conduct: <a href="http://python.org/psf/codeofconduct/" rel="noreferrer" target="_blank">http://python.org/psf/<wbr>codeofconduct/</a><br></blockquote></div></div>