Created
March 14, 2025 14:52
-
-
Save rochacbruno/34342b75cbb1279457c832825086914e to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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)]() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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