Very interesting. This PEP is still in draft state, but I am interested to see how the community will react. For me, I have a few thoughts:<p>1) This is really close to Erlang/Elixir pattern matching and will make fail-early code much easier to write and easier to reason about.<p>2) match/case means double indentation, which I see they reasoned about later in the "Rejected ideas". Might have a negative impact on readability.<p>3) Match is an already used word (as acknowledged by the authors), but I think this could have been a good case for actually using hard syntax. For me, perhaps because I'm used to it, Elixir's "{a, b, c} = {:hello, "world", 42}" just makes sense.<p>4) I hope there won't be a big flame-war debacle like with :=<p>5) And then finally there is the question of: "It's cool, but do we really need it? And will it increase the surprise factor?" And here I'm not sure. And again, this was the concern with the new assignment expression. The assignment expression is legitimately useful in some use cases (no more silly while True), but it might reduce the learnability of Python. Python is often used as an introductory programming language, so the impact would be that curricula need to be adjust or beginner programmers will encounter some surprising code along the road.<p>I can't say this is a good or bad proposal, I want to see what other opinions are out there, and what kind of projects out there in the world would really benefit from syntax like this.