Replacements for switch statement in Python?

The latest versions of Python does support switch case statement in the form of match case statement or you can also use a dictionary as a replacement for switch case statement in Python as shown in below example –