From: Raymond Hettinger Date: Mon, 19 May 2014 19:21:43 +0000 (+0100) Subject: Improve readability X-Git-Tag: v3.5.0a1~1628 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1f54814094afb87a419b7e6e4e02a498f4cf23c4;p=python Improve readability --- diff --git a/Lib/random.py b/Lib/random.py index 174e755a02..b21dee80fa 100644 --- a/Lib/random.py +++ b/Lib/random.py @@ -684,7 +684,7 @@ def _test_generator(n, func, args): print(round(t1-t0, 3), 'sec,', end=' ') avg = total/n stddev = _sqrt(sqsum/n - avg*avg) - print('avg %g, stddev %g, min %g, max %g' % \ + print('avg %g, stddev %g, min %g, max %g\n' % \ (avg, stddev, smallest, largest))