<div dir="ltr">standard python should discontinue to see strings as iterables of characters - length-1 strings.  I see this as one of the biggest design flaws of python.  It may have seem genius at the time, but it has passed it usefulness for practical language use.  For example, numpy has no issues<div><br></div><div><div>>>> np.array('abc')</div><div>array('abc', dtype='<U3')</div></div><div><br></div><div>whereas, as all know, </div><div><br></div><div><div>>>> list('abc')</div><div>['a', 'b', 'c']</div></div><div><br></div><div>Numpy was of course design a lot later, with more experience in practical use (in mind).</div><div><br></div><div>Maybe a starting point for transition that latter operation also returns ['abc'] in the long run, could be to have an explicit split operator as recommended use, e.g.,</div><div><br></div><div>'abc'.split()</div><div>'abc'.split('')</div><div>'abc'.chars()</div><div>'abc'.items()</div><div><br></div><div>the latter two could return an iterator whereas the former two return lists (currently raise exceptions).</div><div>Similar for bytes, etc.</div><div><br></div><div><br></div><div><br></div></div>