- Create A "Database" Variable
d= []
- Create A Table within the variable
d=[ [ ] ]
- Create A Datachunk, and data
d= [ [ [1,2,3],[4,5,6],[7,8,9] ] ] # Spread out so you can see more clearly
- Iterate through database
-
Examples:
- d[0][0][1] - d[0][0][1].split()[0] - d[0][1][3] - d[1][3][4]
-
#database [ #table [ #datachunk [ ] ] ]
c = [ [ [ [1,2,3], [4,5,6] ] ] ]
table= c[0]
dc1 = table[0]
print(dc1[0][0]) # outputs 1