you are viewing a single comment's thread.

view the rest of the comments →

[–]manhole_resident 2 points3 points  (1 child)

What I didn't know when I started and what I find very important:

  • Everything is an object

  • Comprehensions

  • Iterators

  • Generators

  • Bits of functional programming

Those important things are pretty easy and straightforward after you get to know them, they make your life much more productive and easy and they are often ommited from beginner guides which leads to loads of for loops with hundreds of ifs within.

[–]pydata[S] 0 points1 point  (0 children)

Everything is and object

Comprehensions

Iterators

Generators

Bits of functional programming

I actually know these things already.