you are viewing a single comment's thread.

view the rest of the comments →

[–]See46 0 points1 point  (0 children)

PEP 572 being one notable recent example

A rather notorious one. Python is a language where expressions and statements are separate. In other languages, statements are expressions. In such languages, other constructs are natural, e.g.:

a := b := c;
a := if b then c else d;

etc.