Is there a pythonic way to slice a sequence type such that the returned slice is of random length and in random order? For example, something like:
>>> l=["a","b","c","d","e"]
>>> rs=l[*:*]
>>> rs
['e','c']
|
feedback
|
|
How about...
Quick link to docs for the random module can be found here. | |||
|
feedback
|
|
No idiom that I'm aware of, but
| |||||
feedback
|
|
There's a subtle distinction that neither your question nor the other answers address, so I feel I should point it out. It's illustrated by the example below.
As you can see from the output, the first version doesn't "slice" the list, but only samples it, so the return values can be from anywhere in the list. If you literally want a "slice" of the list -- that is, if you want to constrain the sample space before sampling -- then the following doesn't do what you want:
Instead, you would have to do something like this:
But I think an even better way to do this would be like so:
Unfortunately there's no copy-returning version of | |||
feedback
|