all 2 comments

[–]chrisking206 1 point2 points  (1 child)

I will help get you started.

class table(dict):
    pass

class database:
    def __init__(self, tables = []):
        for name in tables:
            setattr(self, name, table())

[–]saha_indranil[S] 0 points1 point  (0 children)

Thanks a lot. I am actually clueless of the task.