Assign split values to multiple variables

you can use a dictionary:

In [29]: strs="foo|bar|spam|eggs"

In [31]: d=dict(("var{0}".format(i),x) for i,x in enumerate(strs.split("|")))

In [32]: d
Out[32]: {'var0': 'foo', 'var1': 'bar', 'var2': 'spam', 'var3': 'eggs'}

In [33]: d['var1']
Out[33]: 'bar'

In [34]: d['var2']
Out[34]: 'spam'

lst = foo.split("|")
lst[0]
lst[1]
...

You can assign to different variables. Like in Perl, you just need to define them in an array, so assignation is done by matching position of variable and result.

Here is something I tried in interactive python:

>>> # this is a grep result, btw
... foo = 'config/some.conf:12:   title = "Super Me"'
>>> [ filename, line, text ] = foo.split(':')
>>> print text
   title = "Super Me"

I do like this rather than a dictionary or an array, especially when working in a for loop. It makes variable names more meaningful, even if local to the loop, or temporary.

Edit
second edit to integrate codeforester's notes (Thanks).

To avoid searching for variables usage, unwanted values can be dummied to clearly state it will not be used. Dummy variables are expected as _ by python linter

>>> [ _, line, text ] = foo.split(':')

If you are not sure about the tokens quantity, use the extended iterable

>>> [ filename, line, text, *_ ] = foo.split(':')

If you don't need the List properties with your variables, you can just remove the square brackets (variables are then managed as a tuple).

End of edit

Readability for the win !