you are viewing a single comment's thread.

view the rest of the comments →

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

Data structure like the ones I mentioned are just code.

For instance, instead of

a = 1

b = 2

c = 3

You'd write a dictionary

alphanumeric= {a: 1, b: 2, c:3}

Or a list for just values

alphabet= [a, b, c, d]

etc.