Python Match Flow Control Only

Descripción

Match-case used only for control flow (no return value)


File Template: ❌


Prefix

match:flow


Scopes

python


Snippet de código

match ${1:value}:
	case ${2:'A'}:
		${3:do_something()}
	case ${4:'B'}:
		${5:do_something_else()}
	case _:
		${6:do_default()}