Giter Site home page Giter Site logo

No trailing zeros? about quantiphy HOT 10 CLOSED

kenkundert avatar kenkundert commented on May 23, 2024
No trailing zeros?

from quantiphy.

Comments (10)

KenKundert avatar KenKundert commented on May 23, 2024

That was not supported, but it seems like a good idea so I have added it. You can get the new feature by updating from github (the feature is not in pypi yet so 'pip install' will not do it). There is a new preference, strip_zeros. If you set it False, the trailing zeros will not be removed:

Quantity.set_prefs(strip_zeros=True)
Fhy = Quantity('1.0000 MHz')
print(Fhy.render(prec=5))

1 MHz

Quantity.set_prefs(strip_zeros=False)
Fhy = Quantity('1.0000 MHz')
print(Fhy.render(prec=5))

1.00000 MHz

from quantiphy.

KenKundert avatar KenKundert commented on May 23, 2024

Oh, and a precision of 5 results in 6 digits being displayed. This seemingly odd choice is modeled after the behavior of scientific calculators.

from quantiphy.

ulthiel avatar ulthiel commented on May 23, 2024

Awesome, cheers! Big up for your work!

from quantiphy.

KenKundert avatar KenKundert commented on May 23, 2024

Thanks!

from quantiphy.

hmijail avatar hmijail commented on May 23, 2024

Found this issue while trying to make the # modifier work (I couldn't):

>>> r = Quantity(123000)
>>> f"{r:#.4}"
'123k'
>>> Quantity.set_prefs(strip_zeros=False)
>>> f"{r:#.4}"
'123.00k'

Is this a bug or am I misunderstanding something?

This is in Quantiphy 2.19 on Python 3.12.2.

from quantiphy.

KenKundert avatar KenKundert commented on May 23, 2024

What were you expecting?

from quantiphy.

hmijail avatar hmijail commented on May 23, 2024

Well, the docs say:

The hash (#) is a literal hash that when present indicates that trailing zeros and radix should not be stripped from the fractional part of the number.

Sounds like the # is supposed to be equivalent to (strip_zeros=False)? And no other format modifier sounds close to that purpose.

Plus, # doesn't seem to do anything, which again sounds like maybe a bug?

>>> from quantiphy import Quantity
>>> r = Quantity(123000)
>>> f"{r:#.4}"
'123k'
>>> f"{r:.4}"
'123k'
>>> Quantity.set_prefs(strip_zeros=False)
>>> f"{r:#.4}"
'123.00k'
>>> f"{r:.4}"
'123.00k'

from quantiphy.

KenKundert avatar KenKundert commented on May 23, 2024

Okay, sorry about that. I was looking at the wrong number. I found and fixed the problem and have updated the github version. Might take me a while to update the pypi version.

>>> from quantiphy import Quantity
>>> r = Quantity(123000)
>>> f"{r:#.4}"
'123.00k'
>>> f"{r:.4}"
'123k'
>>> Quantity.set_prefs(strip_zeros=False)
>>> f"{r:#.4}"
'123.00k'
>>> f"{r:.4}"
'123k'

from quantiphy.

hmijail avatar hmijail commented on May 23, 2024

Maybe I'm being dense, but... shouldn't f"{r:.4}" reflect the preference, and therefore show the zeros in the last case?

from quantiphy.

KenKundert avatar KenKundert commented on May 23, 2024

No, I'm the one being dense. I have fixed this issue as well.

>>> from quantiphy import Quantity
>>> r = Quantity(123000)
>>> f"{r:#.4}"
'123.00k'
>>> f"{r:.4}"
'123k'
>>> Quantity.set_prefs(strip_zeros=False)
>>> f"{r:#.4}"
'123.00k'
>>> f"{r:.4}"
'123.00k'

Thanks!

from quantiphy.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.