The point really is that something called 'stringify()' could do a lot of different reasonable and useful things. None of them are universally what users would want. Unless you have to function scads if optional keyword arguments, is behavior would surprise many users and not for their purpose.
On Tue, Jan 29, 2019, 10:46 PM David Mertz <me...@gnosis.cx wrote: > Of course not! The request was for something that worked on Python > *collections*. If the OP wanted something that worked on iterables in > general, we'd need a different function with different behavior. > > Of course, it also doesn't work on dictionaries. I don't really have any > ideas what the desired behavior might be for dicts. Various things are > conceivable, none obvious. But it's fine on lists, sets, tuples, deques, > and some other things that are roughly sequence-like. > > > > On Tue, Jan 29, 2019, 10:38 PM Robert Vanden Eynde <robertv...@gmail.com > wrote: > >> >> stringify = lambda it: type(it)(map(str, it)) >>> >> >> stringify(range(5)) doesn't work ^^ >> >> One advantage or having a standard function is that it has been designed >> by a lot of persons for all possible use cases :) >> >
_______________________________________________ Python-ideas mailing list Python-ideas@python.org https://mail.python.org/mailman/listinfo/python-ideas Code of Conduct: http://python.org/psf/codeofconduct/