Skip to content

Instantly share code, notes, and snippets.

View fefi95's full-sized avatar

Stefani Castellanos fefi95

View GitHub Profile
@fefi95
fefi95 / basic_examples.py
Last active August 28, 2021 17:40
Pattern Matching in Python
from typing import List
def http_error(status: int) -> str:
match status:
case 400:
return "Bad request"
case 404:
return "Not found"
case 418: