Skip to content

Instantly share code, notes, and snippets.

@rvente
Created June 25, 2020 01:58
Show Gist options
  • Save rvente/099ea7975fbffd1d8157ed1658f0ec3d to your computer and use it in GitHub Desktop.
Save rvente/099ea7975fbffd1d8157ed1658f0ec3d to your computer and use it in GitHub Desktop.
match number:
case 0:
print("Nothing")
case 1:
print("Just one")
case 2:
print("A couple")
case -1:
print("One less than nothing")
case 1-1j:
print("Good luck with that...")
match greeting:
case "":
print("Hello!")
case name:
print(f"Hi {name}!")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment