Ask your own question, for FREE!
Computer Science 10 Online
OpenStudy (anonymous):

How can you improve the accuracy of calculations in Python?

OpenStudy (anonymous):

For precision calculation in python, use the decimal module: http://docs.python.org/library/decimal.html

OpenStudy (anonymous):

How do I install it or do these types of modules come with Python? I really am a novice, by the way.

OpenStudy (anonymous):

The decimal module is built-in. Just type: from decimal import * or import decimal There are code examples on the page I linked above for how to use the functions in the module.

OpenStudy (anonymous):

And then is it active in all of my coding after that?

OpenStudy (anonymous):

It's active until the end of the python session. Any time you open python or run a python file, it's a new session. You'll need to include it in each python file you want to use it in.

Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!
Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!