[Python-ideas] Add _KB, _MB, _GB to numeric literals

2020-10-13 Thread Stephen J. Turnbull
malin...@163.com writes: > PEP 515 added underscore to numeric literals, it brings better > readability. > > PEP 515 -- Underscores in Numeric Literals > https://www.python.org/dev/peps/pep-0515/ > > Is it possible to add _KB, _MB, _GB to numeric literals, for example: With a bit

[Python-ideas] Add _KB, _MB, _GB to numeric literals

2020-10-13 Thread malincns
PEP 515 added underscore to numeric literals, it brings better readability. PEP 515 -- Underscores in Numeric Literals https://www.python.org/dev/peps/pep-0515/ Is it possible to add _KB, _MB, _GB to numeric literals, for example: 200_KB (200*1024) 150_MB (150*1024*1024)