I'm trying to check if any of a number of string targets starts with one of any number of given prefixes, e.g.:
prefixes = ["a", "b", "c"]
targets = ["abar", "xbar"]
then check if any element of targets has a prefix that is in prefixes (and find those elements of targets along with the first prefix they matched). Here "abar" is the only element that fits. My own version is:
for t in target:
if any(map(lambda x: t.startswith(x), prefixes)):
print t
is there a better/shorter/faster way using plain Python or numpy?
mapto a generator. Themapruns through your entire list needlessly. – Blender Feb 27 at 4:41maptoitertools.imap. The other is to use a generator expression (which looks remarkably similar to a list-comp):(t.startswith(x) for x in prefixes)– mgilson Feb 27 at 4:48any(t.startswith(x) for x in prefixes)It's faster and works the same in Python2 or Python3 – gnibbler Feb 27 at 4:48next((p for p in prefixes if t.startswith(p)), None), which would short-circuit to boot, but that wasn't what your question described and wasn't the behaviour of your example code, invalidating my answer, unfortunately. – DSM Feb 27 at 5:00