On 15.05.17 16:00, Steven D'Aprano wrote:
There's also cases whereif x > y: pass else: code is *not necessarily* the same as if not (x > y): code
This is not true.
if not cond:
stmt1
else:
stmt2
always is equivalent to
if cond:
stmt2
else:
stmt1
_______________________________________________
Python-ideas mailing list
[email protected]
https://mail.python.org/mailman/listinfo/python-ideas
Code of Conduct: http://python.org/psf/codeofconduct/
