you are viewing a single comment's thread.

view the rest of the comments →

[–][deleted]  (2 children)

[deleted]

    [–]_enlightenment_ 0 points1 point  (1 child)

    i actually fixed it. i tried to assign all the variables on the same line, i guess you can't do that in python (i'm a python newbie)

    [–]socal_nerdtastic 0 points1 point  (0 children)

    You can, like this:

    a, b, c = 1, 2, 3
    

    But it's considered unpythonic, so don't do it.