I have some code in Python:
repost_pid = row[0]
repost_permalink = row[1]
repost_domain = row[2]
repost_title = row[3]
repost_submitter = row[4]
Is there a one-liner way to assign these variables?
Also, what would I do if I wanted to skip a value?