This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author tim.peters
Recipients tim.peters, uppalanchupavankumar45@gmail.com
Date 2019-09-02.18:27:07
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1567448827.74.0.553466551889.issue38012@roundup.psfhosted.org>
In-reply-to
Content
> Also, THE min("Infinity") is priniting "I".  Practically,
> the minimum value is "e" right ?

Sorry, I have no idea what "practically" means to you.  It's just a fact that all uppercase ASCII letters compare less than all lowercase ASCII letters:

>>> 'I' < 'e'
True
>>> 'Z' < 'a'
True

This isn't just Python - it's an industry-wide standard.  Look at any reference for the ASCII character set; for example, here:

http://www.asciitable.com/

Try posting about what you're trying to accomplish on the Python mailing list?  The issue tracker isn't the right place for tutorials.
History
Date User Action Args
2019-09-02 18:27:07tim.peterssetrecipients: + tim.peters, uppalanchupavankumar45@gmail.com
2019-09-02 18:27:07tim.peterssetmessageid: <1567448827.74.0.553466551889.issue38012@roundup.psfhosted.org>
2019-09-02 18:27:07tim.peterslinkissue38012 messages
2019-09-02 18:27:07tim.peterscreate