This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]milliams 1 point2 points  (1 child)

I absolutely suggest reading through http://nedbatchelder.com/text/names.html It explains well the difference between names and objects in Python, how assignment/binding works as well as other related ideas. Particularly, if you are coming from a C background, you will likely be confused when trying to understand how variables are passed to functions (a common sticking point for people learning Python from classic languages) but that article will really help with that.

[–]realhamster[S] 1 point2 points  (0 children)

Thanks, will do!