| The Python way of having characters just be strings of length one seems simpler and more consistent than having both a character type and a string type. So, with the proposed subseq and indexing additions: > ("foobar" 3)
"b"
> ("foobar" 2 -2)
"oba"
Other than offending people who'd be startled that strings are a sequence of strings, is there some reason not to do this? |