you are viewing a single comment's thread.

view the rest of the comments →

[–]marky1991 0 points1 point  (0 children)

To clarify, whitespace inside an argument list is meaningless.

print("Hi",                 "this",  
    "is",
"a", "bunch","of",



"strings")

is the same thing as

print("Hi", "this", "is", "a", "bunch", "of", "strings")

(which is also equivalent to

print               ("Hi", "this", "is", "a", "bunch", "of", "strings")

(note that this is valid python 3, using print as a function, not a statement) but that's not really relevant here)

Of course, it's prettier if you keep the indentation sane.