mirror of https://github.com/python/cpython
Add comma grouping to max result so it's easier to read.
This commit is contained in:
parent
448acd0a3f
commit
cbe1a4e28f
|
@ -110,7 +110,7 @@ def main(import_):
|
|||
print(result, end=' ')
|
||||
sys.stdout.flush()
|
||||
assert not sys.dont_write_bytecode
|
||||
print("]", "best is", max(results))
|
||||
print("]", "best is", format(max(results), ',d'))
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
|
|
Loading…
Reference in New Issue