Re: [Python-Dev] Python Design issue with print() function

2017-03-08 Thread Chris Barker
This is a list for python interpreter development, not new ideas -- that list is python-ideas. However, sorry to be blunt, but this post shows great ignorance of Python -- please study up more in the future before posting suggestions on any list. Specifics: 1) this has nothing to do with the pri

[Python-Dev] Python Design issue with print() function

2017-03-08 Thread ravi y via Python-Dev
Hi Python Developers, print() function has a slight design issue, when user gives start and end positions of character array.Issue: >>> str_ary="abcdef" >>> print(str_ary[1]) b >>> print(str_ary[4]) e >>> print(str_ary[1:4]) bcd >>>  In the above scenario, user is expecting that output of print