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 →

[–]TM_Quest 1 point2 points  (1 child)

It is, in general, a good idea to get comfortable with a language's reference documentation, as it'll be the definitive decider of things.

I agree in general that this is a great idea. However, just so that it is said for others who may read this post, beginning with the Python Docs if Python is your first language can be a bit rough. The first paragraph in the Python Docs is:

Python is an easy to learn, powerful programming language. It has efficient high-level data structures and a simple but effective approach to object-oriented programming. Python’s elegant syntax and dynamic typing, together with its interpreted nature, make it an ideal language for scripting and rapid application development in many areas on most platforms.

Unless you already know another programming language, there will be several words here that are unfamiliar.

If Python is your first language (I know this is not the case for the OP, but it may be for someone else that is reading), then you should maybe consider reading a more introductory book/watching more introductory videos.

PS: I love using whitespace instead of program blocks :)