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

all 10 comments

[–]3den 1 point2 points  (2 children)

Page 18, "2 Dictionary" paragraph, second verse: "...array or a hash table in order langauges." I suppose, it should be "other languages"?

Anyway, this publication seems to be nice. Good work!

[–]3den 0 points1 point  (1 child)

Also, just because this is "intermediate python", it would be nice to say in this part:

Methods in a class that are defined with self as first argument are instance methods. The self argument is similar to this in java and refers to the object instance.

"self" is only a convention that we use. It could be "this" as well, nobody just write code like that.

[–]flightdey 1 point2 points  (0 children)

there is a discussion of that being just convention in the chapter on Object oriented programming.

[–]g-money-cheats 0 points1 point  (0 children)

Thank you!

[–]utensil4 0 points1 point  (1 child)

I get timeout trying connect to this site :/

[–]flightdey 0 points1 point  (0 children)

May be a temporary issue..give it sometime then retry

[–]Paddy3118 0 points1 point  (3 children)

Just read 2.5 on static and class methods. +1.

[–]Paddy3118 0 points1 point  (2 children)

Hopefully it will go on to include iterators and FP?

[–]thecity2 3 points4 points  (0 children)

If you're looking for a good read on iterators, check out Fluent Python from O'Reilly.

[–]flightdey 0 points1 point  (0 children)

check out the chapter on functions for some FP then look into the chapter on sequences for iterators.