I noticed that in the package you can use measurement
to convert " -123.4(56) "
into -123.4 ± 5.6
. But is there a way to take the Measurement object and output a string formatted with parentheses to denote uncertainties like "-123.4(56)"
.
Ideally, it would be of the form
repr("text/something", -123.4 ± 5.6) ≈ "-123.4(56)"