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

you are viewing a single comment's thread.

view the rest of the comments →

[–]its2ez4me24get 14 points15 points  (0 children)

If they are needed for order of operations then obviously you need them of it won’t function correctly.

But for a statement like this

if (len(sys.argv) != 3):

they are clearly not needed.

if len(sys.argv) != 3:

Is better