[issue39597] sorting the String

2020-02-10 Thread Zachary Ware
Change by Zachary Ware : -- stage: -> resolved status: pending -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list U

[issue39597] sorting the String

2020-02-10 Thread Ronald Oussoren
Ronald Oussoren added the comment: >From the screenshot: >>> b = ['sss', 'ase', 'klm', 'qwe'] >>> print sorted(b) ['ase', 'klm', 'qwe', 'sss'] This is the correct result, the output list is alphabetically sorted. -- nosy: +ronaldoussoren resolution: -> not a bug status: open -> pend

[issue39597] sorting the String

2020-02-10 Thread Shani M
New submission from Shani M : It showing the wrong string order. 'sss' is to be appear at 3rd place but it comes at last place. 'qwe' is to appear at last place but it comes at 3rd place. -- files: Screenshot from 2020-02-10 14-08-52.png messages: 361675 nosy: Shani M priority: normal