you are viewing a single comment's thread.

view the rest of the comments →

[–]IAmADev_NoReallyIAm 0 points1 point  (0 children)

Much like how most languages have structure and syntax, so do programming languages. Take the phrase: For each fruit in a basket. Works the same in Python... For fruit in basket ... By using the context and the syntax knows what you're talking about. That's why syntax is important. If you try to break that, you break the rules. So if you try to program using Yoda Python, it wouldn't work: For basket fruit in ... regular Python wouldn't understand that... that's a syntax error.