James Lu wrote:
I thinkprint("Remember to wear sunscreen!") if hot_outside unless Weather.is_raining() Is more readable than if hot_outside and not Weather.is_raining(): print("Remember to wear sunscreen!")
That's very much a matter of opinion -- I find the second version considerably clearer. -- Greg _______________________________________________ Python-ideas mailing list -- [email protected] To unsubscribe send an email to [email protected] https://mail.python.org/mailman3/lists/python-ideas.python.org/ Message archived at https://mail.python.org/archives/list/[email protected]/message/XOOM2YNO2MEMJTFHGKRB3UOSPPJ5OVCG/ Code of Conduct: http://python.org/psf/codeofconduct/
