Beyond the Basics
Lesson 10 – Assignment Expressions
Assignment expressions were added to Python in 3.8. The general idea is that an assignment expression allows you to assign to variables within an expression. The syntax for doing this is: This operator has been called the "walrus operator", although their real name is "assignment expression". Interestingly, the CPython internals also refer to them as …