Skip to content

Commit 4a1b375

Browse files
authored
beautified printout
1 parent d012c33 commit 4a1b375

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ulab_Crunch_Numbers_Fast/benchmark.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ def timeit(s, f, n=100):
3333
x = f()
3434
t1 = time.monotonic_ns()
3535
r = (t1 - t0) * 1e-6 / n
36-
print("%-20s : %8.3fms [result=%f]" % (s, r, x))
36+
print("%-30s : %8.3fms [result=%f]" % (s, r, x))
3737

3838
print("Computing the RMS value of 100 numbers")
3939
timeit("traditional", lambda: normalized_rms(nums_list))

0 commit comments

Comments
 (0)