Converts a number to a string, using scientific notation. The operation is not affected by the context.
(self, a)
| 5523 | return a.to_eng_string(context=self) |
| 5524 | |
| 5525 | def to_sci_string(self, a): |
| 5526 | """Converts a number to a string, using scientific notation. |
| 5527 | |
| 5528 | The operation is not affected by the context. |
| 5529 | """ |
| 5530 | a = _convert_other(a, raiseit=True) |
| 5531 | return a.__str__(context=self) |
| 5532 | |
| 5533 | def to_integral_exact(self, a): |
| 5534 | """Rounds to an integer. |