diff options
author | Allan Haldane <allan.haldane@gmail.com> | 2021-03-19 12:58:15 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-19 12:58:15 -0400 |
commit | d177382065ca135b921175b94a79119c61a1dbd5 (patch) | |
tree | 59896dd27912beafe9c911026ab30179f61388a4 /numpy/core/arrayprint.py | |
parent | 5abc3946bd951211df4d0b492bd1781394dddcde (diff) | |
download | numpy-d177382065ca135b921175b94a79119c61a1dbd5.tar.gz |
Update arrayprint.py
Diffstat (limited to 'numpy/core/arrayprint.py')
-rw-r--r-- | numpy/core/arrayprint.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/numpy/core/arrayprint.py b/numpy/core/arrayprint.py index 8a93705ca..d9d2dbe68 100644 --- a/numpy/core/arrayprint.py +++ b/numpy/core/arrayprint.py @@ -1053,9 +1053,10 @@ def format_float_scientific(x, precision=None, unique=True, trim='k', Pad the exponent with zeros until it contains at least this many digits. If omitted, the exponent will be at least 2 digits. min_digits : non-negative integer or None, optional - Minimum number of digits to print. This only has an effect for `unique=True`. - In that case more digits than necessary to uniquely identify the value may - be printed. The last additional digit is rounded unbiased. + Minimum number of digits to print. This only has an effect for + `unique=True`. In that case more digits than necessary to uniquely + identify the value may be printed and rounded unbiased. + Returns ------- |