Shortlister(python project)
Project outline
the shorlister project is something to practice creating CRUD application. The idea is to use class so we can create similar properties objects with different values.
from dataclasses import dataclass
@dataclass
class Person:
name: str
age: int
contact: str
#making a Person class with dataclasses
We
CRUD stands for
Create Read Update Delete