Skip to content

Instantly share code, notes, and snippets.

@iamjjanga-ouo
Created February 23, 2021 00:10
Show Gist options
  • Save iamjjanga-ouo/5aeb0eb50735bada8a5cdf64b7e2654e to your computer and use it in GitHub Desktop.
Save iamjjanga-ouo/5aeb0eb50735bada8a5cdf64b7e2654e to your computer and use it in GitHub Desktop.
Python: @DataClass decoration example
# python 3.7+
from dataclasses import dataclass
@dataclass
class Product:
weight: int = None
price: float = None
apple = Product()
apple.price = 10
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment