Skip to content

Instantly share code, notes, and snippets.

@rochacbruno
Created March 14, 2025 14:52
Show Gist options
  • Save rochacbruno/34342b75cbb1279457c832825086914e to your computer and use it in GitHub Desktop.
Save rochacbruno/34342b75cbb1279457c832825086914e to your computer and use it in GitHub Desktop.
from dataclasses import dataclass
@dataclass
class Potato:
value: str
class EnglishPotato(Potato): ...
class SweetPotato(Potato): ...
def give_me_something(arg: int) -> EnglishPotato | SweetPotato:
value = "batata"
if arg > 10:
return SweetPotato(value)
return EnglishPotato(value)
result = give_me_something(90)
actions = {
EnglishPotato: lambda: print("Deep Fry it"),
SweetPotato: lambda: print("Make bread"),
}
actions[type(result)]()
from dataclasses import dataclass
@dataclass
class Potato:
value: str
class EnglishPotato(Potato): ...
class SweetPotato(Potato): ...
def give_me_something(arg: int) -> EnglishPotato | SweetPotato:
value = "batata"
if arg > 10:
return SweetPotato(value)
return EnglishPotato(value)
result = give_me_something(90)
if isinstance(result, EnglishPotato):
print("Deep Fry it")
elif isinstance(result, SweetPotato):
print("Make bread")
from dataclasses import dataclass
@dataclass
class Potato:
__match_args__ = ("value",)
value: str
class EnglishPotato(Potato): ...
class SweetPotato(Potato): ...
def give_me_something(arg: int) -> EnglishPotato | SweetPotato:
value = "batata"
if arg > 10:
return SweetPotato(value)
return EnglishPotato(value)
match result := give_me_something(90):
case EnglishPotato(value):
print("Deep Fry it")
case SweetPotato(value):
print("Make bread")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment