The Python Switch Statement
Briefly

Introduction
The switch statement is a powerful and convenient tool for controlling the flow of your program.It allows you to quickly and easily create multiple branches of code, depending on the value of a given variable or expression.It's commonly used when you need to execute different logic depending on a given variable's value, which can have more than 2 (but a finite number) of values.
Read at Stack Abuse
[
add
]
[
|
|
]