class table:
    def __init__(self, params):
        self.Table = []
        self.params = params

    def Craft(self, name, params):
        pass

    def push(self, params):
        self.Table.append({
            self.params[n]: params[n]
            for n in range(len(params))
        })

    def search(self, params, v):
        G = 0
        while self.Table[G][params] != v:
            G += 1
        return self.Table[G]


print('Hello world!')

B = table(["name", "age"])

B.push(["Jehmz", 5])
B.push(["Jehmz", 6])
B.push(["hechums", 5])

print(B.search("age", 6))

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: