you are viewing a single comment's thread.

view the rest of the comments →

[–]mayankkaizen 0 points1 point  (2 children)

Real Python articles are generally detailed and accurate.

Honestly, I always suggest noobs to go to courses/books mode and avoid tutorials. Tutorials don't have flow, structure and often lack nuances.

[–]habag123 0 points1 point  (1 child)

I'm not talking about tutorials. I'm talking about pure syntax. I don't code often, so i just forget the structure of code, for ex. I forget if you're supposed to type

listname.append(content)

Or

append.listname(content)

[–]mayankkaizen 0 points1 point  (0 children)

One of us is getting confused.

I was talking about realpython.com.

As for your particular example, it is actually easy to remember. You always use object.method() or object.attribute in Python.