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 rhettinger
Recipients mdk, rhettinger, seluj78
Date 2018-11-09.16:43:12
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1541781793.01.0.788709270274.issue35200@psf.upfronthosting.co.za>
In-reply-to
Content
The current repr is awkward for teaching but does have the virtue of being able to round-trip.  When that is possible, it is what the language usually chooses.

FWIW, you can show ranges with print() and *-unpacking:

    >>> print(*range(1000, 2000, 100))
    1000 1100 1200 1300 1400 1500 1600 1700 1800 1900
History
Date User Action Args
2018-11-09 16:43:13rhettingersetrecipients: + rhettinger, mdk, seluj78
2018-11-09 16:43:13rhettingersetmessageid: <1541781793.01.0.788709270274.issue35200@psf.upfronthosting.co.za>
2018-11-09 16:43:12rhettingerlinkissue35200 messages
2018-11-09 16:43:12rhettingercreate