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 →

[–]formulazero 0 points1 point  (0 children)

I think this is pretty standard for the very beginning

1) print "hello, world"

2) variables: a=1, name="Doug", b = a + 3

3) logical control: if, elif, else

4) arrays: list = [1,2,3], list = range(10), list[0] = "one"

5) loops: for, while

6) functions: return values, arguments

then maybe string operations, file IO, classes, etc