In python the equivalent to switch case in other languages is match: break There is no break in Python for match. break is only used for loops. If you want to achieve being able to break from a match case early you can use an exception trick like this: