a=['123','2',4]
b=a[4] or 'sss'
print b
I want to get a default value when the list index is out of range (here: 'sss').
How can I do this?
|
|
|
In the Python spirit of "ask for forgiveness, not permission", here's one way:
|
|||||||||||||||||||||
|
|
In the non-Python spirit of "ask for permission, not forgiveness", here's another way:
|
|||
|
|
A cleaner way (only works if you're using a dict):
Here's another way you might like (again, only for dicts):
|
|||||||
|
|
You could also define a little helper function for these cases:
It returns the return value of the function
Edit: Made it catch only one specified type of exception. Suggestions for improvement are still welcome! |
|||||||
|
|
I’m all for asking permission (i.e. I don’t like the
|
|||||||||||
|
|
Since this is a top google hit, it's probably also worth mentioning that the standard "collections" package has a "defaultdict" which provides a more flexible solution to this problem. You can do neat things, for example:
Read more: http://docs.python.org/2/library/collections.html |
|||
|
|
|
You could create your own list-class:
You can use it like this:
|
|||
|
|