Popular recipes tagged "units" but not "numerical"http://code.activestate.com/recipes/tags/units-numerical/2014-01-03T01:29:28-08:00ActiveState Code RecipesTemperature Conversation Application in Python (Python)
2014-01-03T01:29:28-08:00Captain DeadBoneshttp://code.activestate.com/recipes/users/4184772/http://code.activestate.com/recipes/578804-temperature-conversation-application-in-python/
<p style="color: grey">
Python
recipe 578804
by <a href="/recipes/users/4184772/">Captain DeadBones</a>
(<a href="/recipes/tags/python/">python</a>, <a href="/recipes/tags/temperature/">temperature</a>, <a href="/recipes/tags/units/">units</a>).
</p>
<p>This is a basic program in python that can cover between units of temperature. This was written for an article on <a href="http://thelivingpearl.com/2014/01/02/temperature-conversation-application-in-python/">How to use modules in Python</a>. </p>
Unit Conversions Using Decimal (Python)
2011-04-13T06:55:05-07:00Dave Baileyhttp://code.activestate.com/recipes/users/4168479/http://code.activestate.com/recipes/577652-unit-conversions-using-decimal/
<p style="color: grey">
Python
recipe 577652
by <a href="/recipes/users/4168479/">Dave Bailey</a>
(<a href="/recipes/tags/conversions/">conversions</a>, <a href="/recipes/tags/decimal/">decimal</a>, <a href="/recipes/tags/units/">units</a>).
</p>
<p>A table driven routine generates a unit conversion module and a doctest file. The generated module uses the Decimal class to create unit conversion classes which uses class properties to perform the conversion. conversion.py supplies the following classes:
Distance
Area
Volumn
Time
Velocity
Acceleration
Mass
Force
Weight
Pressure
Frequency
Power
Temperature</p>
<p>New classes and additional units can easily be created by adding to the table.</p>
Metric Prefix Symbol and Decimal Quiz (Python)
2009-10-11T18:39:58-07:00Daniel Sahahttp://code.activestate.com/recipes/users/4171644/http://code.activestate.com/recipes/576928-metric-prefix-symbol-and-decimal-quiz/
<p style="color: grey">
Python
recipe 576928
by <a href="/recipes/users/4171644/">Daniel Saha</a>
(<a href="/recipes/tags/base/">base</a>, <a href="/recipes/tags/decimal/">decimal</a>, <a href="/recipes/tags/metric/">metric</a>, <a href="/recipes/tags/prefix/">prefix</a>, <a href="/recipes/tags/symbol/">symbol</a>, <a href="/recipes/tags/units/">units</a>).
Revision 3.
</p>
<p>Quiz on the metric prefixs, symbols, and decimals associated with each other.</p>