<div dir="ltr">I like the idea. I agree with the assertion that has been discussed previously that a string really shouldn't be iterable. Because of that, I think that explicitly checking if it is str, and if not, using it as an iterator, would be appropriate.</div>
<div class="gmail_extra"><br><br><div class="gmail_quote">On Thu, Apr 17, 2014 at 3:14 PM, Andrew Barnert <span dir="ltr"><<a href="mailto:abarnert@yahoo.com.dmarc.invalid" target="_blank">abarnert@yahoo.com.dmarc.invalid</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div class="">On Apr 17, 2014, at 11:52, Alex Rodrigues <<a href="mailto:lemiant@hotmail.com">lemiant@hotmail.com</a>> wrote:<br>

<br>
> It's a fairly common problem to want to .find() or .replace() or .split() any one of multiple characters.<br>
<br>
</div>I like your solution, except for one thing. Explicitly requiring a list of arguments rather than, say, a tuple or an iterator, seems unnecessarily restrictive. However, allowing any iterable of strings doesn't work because a string is itself an iterable of strings.<br>

<br>
There are a few cases where Python deals with this problem by treating tuples specially (e.g., % formatting), but I don't think anyone wants to extend that solution.<br>
<br>
You could almost handle these problems with *args (replace replaces any of args[:-1] with args[-1]), except that all of them have optional parameters at the end.<br>
<br>
You could have a keyword-only argument to specify an iterable of strings (in which case you can't use any positional arguments), but that's a pretty weird interface.<br>
<br>
Or you could just add some new methods: split_any, replace_any, etc. But str already has a lot of methods; do we really want more?<br>
<br>
I'd love to see an answer that works here, because I agree that it would make a lot of code simpler, and especially code that novices want to write.<br>
<div class="HOEnZb"><div class="h5">_______________________________________________<br>
Python-ideas mailing list<br>
<a href="mailto:Python-ideas@python.org">Python-ideas@python.org</a><br>
<a href="https://mail.python.org/mailman/listinfo/python-ideas" target="_blank">https://mail.python.org/mailman/listinfo/python-ideas</a><br>
Code of Conduct: <a href="http://python.org/psf/codeofconduct/" target="_blank">http://python.org/psf/codeofconduct/</a><br>
</div></div></blockquote></div><br></div>