Walrus Operator in Python 3.8
Python 3.8 is still in development. But many alpha versions have been released. One of the latest features in Python 3.8 is the Walrus Operator. In this article, we’re going to discuss the Walrus operator and explain it with an example.
Introduction
Walrus-operator is another name for assignment expressions. According to the official documentation, it is a way to assign to variables within an expression using the notation NAME := expr. The Assignment expressions allow a value to be assigned to a variable, even a variable that doesn’t exist yet, in the context of expression rather than as a stand-alone statement.
Code :
a = [1, 2, 3, 4] if (n := len(a)) > 3: print(f"List is too long ({n} elements, expected <= 3)") |
Output :

Here’s instead of using “len(a)” in two places we have assigned it to a variable called “n”, which can be used later. This helps us to resolve code duplication and improves readability.
Example –
Let’s try to understand Assignment Expressions more clearly with the help of an example using both Python 3.7 and Python 3.8. Here we have a list of dictionaries called “sample_data”, which contains the userId, name and a boolean called completed.
sample_data = [ {"userId": 1, "name": "rahul", "completed": False}, {"userId": 1, "name": "rohit", "completed": False}, {"userId": 1, "name": "ram", "completed": False}, {"userId": 1, "name": "ravan", "completed": True} ] print("With Python 3.8 Walrus Operator:") for entry in sample_data: if name := entry.get("name"): print(f'Found name: "{name}"') print("Without Walrus operator:") for entry in sample_data: name = entry.get("name") if name: print(f'Found name: "{name}"') |
Output:

Recommended Posts:
- Benefits of Double Division Operator over Single Division Operator in Python
- Ternary Operator in Python
- Operator Overloading in Python
- Operator Functions in Python | Set 2
- Python | Operator.countOf
- Difference between == and is operator in Python
- Operator Functions in Python | Set 1
- Python | List comprehension vs * operator
- Like Operator in SAS Programming
- Arrow operator -> in C/C++ with Examples
- New '=' Operator in Python3.8 f-string
- Modulo Operator (%) in C/C++ with Examples
- Python - Read blob object in python using wand library
- Python | Convert list to Python array
- twitter-text-python (ttp) module - Python
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.

