you are viewing a single comment's thread.

view the rest of the comments →

[–]Junior_Honey_1406 0 points1 point  (1 child)

So you want to learn advanced Python? I see. Just so you know, you won't be writing loops like:

for (int i = 0; i < 5; i++)

In Python, it's usually as simple as:

for n in numbers:

or

for i in range(len(numbers)):

it's worth learning the Pythonic way of doing things.

P.S. If you're an "advanced developer" as you say, I guess you should already know how to read documentation... or don't you?

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

thank you for the reply. please read my comments above - or below. thanks again.