Python vs Lua, data structure
June 28th, 2008 mysurface
In python, we have various type of data structure, such as list, set, tuple, dictionary etc, but in Lua, we only have table. Table in Lua can be used as array, list, dictionary or object. Let see how you we construct list from Lua table. t = { ‘a’,'b’,'c’,'d’,'e’,'f’ } To print out the whole [...]
Posted in Developer, Lua, python | Hits: 75707 | 5 Comments »






