Skip to main content

Display numbers in scientific notation.

Project description

This package expresses numbers in scientific notation, in formatted strings. It’s intended use to to make computational results easily readable, especially when using a REPL like IPython.

Python 2 is unsupported, due to unicode handling.

Example use. Run scinot.start() to override default print and REPL output:

341283875012.238

>> 341283875012.238

import scinot

scinot.start()
341283875012.238

>> 3.413 x 10 11

Call scinot.end() to return to remove parsing:

scinot.end()

341283875012.238

>> 341283875012.238

You can specify the number of significant figures to display with start, and how long the number must be to invoke scientific notation. It defaults to 4 significant figures, and order-of-magnitude 4:

scinot.start(sigfigs=2, thresh=3)
15

>> 15

152

>> 1.5 x 10 2

Call scinot.format() to return a string in scientific notation:

scinot.format(341283875012.238)

>> ‘3.413 x 10 11

You can also specify the number of significant figures to display; it defaults to 3.

scinot.format(-.00000409348, 2)

>> ‘-4.1 x 10 -6

Call scinot.disp() instead of scinot.format() to print the result directly, rather than returning a string. format and disp both take two arguments: The number, and optionally, the amount of significant figures.

If you’re running Python in a Windows terminal and see squares instead of exponents, try a different font, like Source Code Pro.

I’ve built this module with my own use-case in mind, and have likely overlooked features that would extend and improve functionality. If you have an idea, please contact me, or submit a pull request.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

scinot-0.0.5.tar.gz (3.6 kB view hashes)

Uploaded Source

Built Distribution

scinot-0.0.5-py3-none-any.whl (5.4 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page