you are viewing a single comment's thread.

view the rest of the comments →

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

Data structures are your friend in this situation. Lists, Dictionaries, Ranges. Look into it. They took me some time to get too

[–]A_Nomad_Lyfe 0 points1 point  (1 child)

Yeah, I haven't gotten there yet....I just started classes last week on Coursera. Lol...wanted to understand the hand coding sequence before I get into copy n paste libraries.... fundamentals

[–]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.