Skip to main content

Switch statements for Python

Project description

Dipswitch

Dipswitch is a Python module allowing for switch-case statements with a similar structure to those in languages that natively support them.

Usage

from dipswitch import switch
for case in switch(2):
	if case(0):
		print("doesn't execute")
	if case(1):
		print("doesn't execute")
		break
	if case(2):
		print("executes")
	if case(3):
		print("executes")
		break
	if case(4):
		print("doesn't execute")
		break
	if case.default():
		print("doesn't execute")

Project details


Release history Release notifications | RSS feed

This version

1.0

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

dipswitch-1.0.tar.gz (2.8 kB view hashes)

Uploaded Source

Built Distribution

dipswitch-1.0-py3-none-any.whl (3.1 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page