We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 321b092 commit f5689d2Copy full SHA for f5689d2
labfis.py
@@ -12,7 +12,7 @@ def __str__(self):
12
if self.uncertainty == 0:
13
return("{:g}".format(self.mean))
14
else:
15
- su = str(self.uncertainty)
+ su = "%.16f" % self.uncertainty
16
i = su.find(".")
17
if i == -1:
18
r = - len(su) + 1
0 commit comments