diff options
author | Guido van Rossum <guido@python.org> | 2007-08-31 03:25:11 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2007-08-31 03:25:11 (GMT) |
commit | 0616b792ba4115fe3bb79c446c2c6383db434490 (patch) | |
tree | 5a6c2a06d6c8aa125c0fb4fcb278020b6c585e12 /Doc/tutorial/floatingpoint.rst | |
parent | 8b2af27dae7c80218c9912052ac1b4c6144ce746 (diff) | |
download | cpython-0616b792ba4115fe3bb79c446c2c6383db434490.zip cpython-0616b792ba4115fe3bb79c446c2c6383db434490.tar.gz cpython-0616b792ba4115fe3bb79c446c2c6383db434490.tar.bz2 |
Tutorial update for 3.0 by Paul Dubois.
I had to fix a few markup issues in controlflow.rst and modules.rst.
There's a unicode issue on line 448 in introduction.rst that someone else needs to fix.
Diffstat (limited to 'Doc/tutorial/floatingpoint.rst')
-rw-r--r-- | Doc/tutorial/floatingpoint.rst | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Doc/tutorial/floatingpoint.rst b/Doc/tutorial/floatingpoint.rst index cbf7008..ab68723 100644 --- a/Doc/tutorial/floatingpoint.rst +++ b/Doc/tutorial/floatingpoint.rst @@ -136,7 +136,10 @@ display of your final results to the number of decimal digits you expect. Python's ``%`` format operator: the ``%g``, ``%f`` and ``%e`` format codes supply flexible and easy ways to round float results for display. - +If you are a heavy user of floating point operations you should take a look +at the Numerical Python package and many other packages for mathematical and +statistical operations supplied by the SciPy project. See <http://scipy.org>. + .. _tut-fp-error: Representation Error |