- Timestamp:
- Nov 10, 2020, 12:21:21 AM (5 years ago)
- Branches:
- ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, master, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- 0dd9a5e
- Parents:
- 16ba4a6f (diff), 75baaa3 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)links above to see all the changes relative to each parent. - File:
-
- 1 edited
-
tools/stat.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
tools/stat.py
r16ba4a6f r18f0b70 1 #!/usr/bin/python 1 #!/usr/bin/python3 2 2 3 3 import sys … … 17 17 avg = numpy.mean (content) 18 18 std = numpy.std (content) 19 print "median {0:.1f} avg {1:.1f} stddev {2:.1f}".format( med, avg, std)19 print("median {0:.1f} avg {1:.1f} stddev {2:.1f}".format( med, avg, std )) 20 20 21 21
Note:
See TracChangeset
for help on using the changeset viewer.