Python Match Short

Descripción

Short match-case expression with one case and default


File Template: ❌


Prefix

match:short


Scopes

python


Snippet de código

match ${1:value}:
	case ${2:'A'}:
		return ${3:result_a}
	case _:
		return ${4:result_default}