The walrus operator, introduced in Python 3.8, allows you to do two things at the same time: assign a value to a variable and return that value, so sometimes you can write shorter and more readable code that can be even more computational and efficient.
The walrus operator, introduced in Python 3.8, allows you to do two things at the same time: assign a value to a variable and return that value, so sometimes you can write shorter and more readable code that can be even more computational and efficient.