Skip to content

Instantly share code, notes, and snippets.

@petrosDemetrakopoulos
Last active November 18, 2022 09:47
Show Gist options
  • Select an option

  • Save petrosDemetrakopoulos/673d91af8c20e3d5ee5a37845f616393 to your computer and use it in GitHub Desktop.

Select an option

Save petrosDemetrakopoulos/673d91af8c20e3d5ee5a37845f616393 to your computer and use it in GitHub Desktop.
from dataclasses import dataclass
@dataclass
class User:
name: str
surname: str
email: str
user_instance = User('Petros', 'Demetrakopoulos', 'test@test.com')
print(user_instance)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment