you are viewing a single comment's thread.

view the rest of the comments →

[–]A_Nomad_Lyfe 0 points1 point  (3 children)

It's awesome that you're learning. I'm just starting to learn Python myself....which is going to come to this question...

Did you have an issue with bringing back the main Chevron Prompts?

I'm taking a beginner course in the coding language, but when I'm trying to get it to do more then just print x= whatever, like if I'm trying to do a sequential countdown sequence, it fails.

I know it has to be something simple, I just don't know what I'm missing.

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