Switch Case in Python (Replacement)
What is the replacement of Switch Case in Python?
Unlike every other programming language we have used before, Python does not have a switch or case statement. To get around this fact, we use dictionary mapping.
Method 1: Switch Case implement in Python using Dictionary Mapping
In Python, a dictionary is an unordered collection of data values that can be used to store data values. Unlike other data types, which can only include a single value per element, dictionaries can also contain a key: value pair.
The key value of the dictionary data type functions as cases in a switch statement when we use the dictionary to replace the Switch case statement.
- Python3
Method 2: Switch Case implement in Python using if-else
The if-else is another method to implement switch case replacement. It is used to determine whether a specific statement or block of statements will be performed or not, i.e., whether a block of statements will be executed if a specific condition is true or not.
- Python3
Method 3: Switch Case implement in Python using Class
In this method, we are using a class to create a switch method inside the python switch class in Python.
- Python3
Output:
Jan mar
Switch Case in Python
In Python 3.10 and after that, Python will support this by using match in place of switch:
- Python3