Add comma grouping to max result so it's easier to read.

This commit is contained in:
Brett Cannon 2010-07-16 19:26:23 +00:00
parent 448acd0a3f
commit cbe1a4e28f
1 changed files with 1 additions and 1 deletions

View File

@ -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__':