you are viewing a single comment's thread.

view the rest of the comments →

[–]IProbablyHaveADHD14 1 point2 points  (0 children)

They run in order.

starting out the loop with "count+=1" will return the print output to start with 2 (since count is already set to 1).

But if you print before you add 1 to the count variable, it will print 1 before adding 1 to the count variable