Lua 的 Table 等价于 Python

Lua's Table Equivalent In Python

是否有 python table 等同于 lua 的?

-- Lua's Table
a = {}
a.x = 10
a.y = 10
print(a.x)
print(a.y)

-- OUTPUT
10
10
a = {}
a["x"] = 10
a["y"] = 10
print(a["x"])
print(a["y"])

# OUTPUT
10
10

你说的是这个吗?