Popular recipes tagged "calculator" but not "python"http://code.activestate.com/recipes/tags/calculator-python/2014-09-17T22:04:36-07:00ActiveState Code RecipesGarden Requirements Calculator (Python) 2014-09-17T22:04:36-07:00Ethan Hannhttp://code.activestate.com/recipes/users/4190746/http://code.activestate.com/recipes/578935-garden-requirements-calculator/ <p style="color: grey"> Python recipe 578935 by <a href="/recipes/users/4190746/">Ethan Hann</a> (<a href="/recipes/tags/calculator/">calculator</a>, <a href="/recipes/tags/garden/">garden</a>, <a href="/recipes/tags/math/">math</a>). </p> <p>This program takes input from the user and determines the amount of gardening materials needed for a garden. The garden is a perfect square. The four outer flowerbeds are congruent semicircles and the central flowerbed is a perfect circle. Everything else inside the garden is considered fill: stone, mulch, or other fill material.</p> A Simple Calculator (Tcl) 2014-09-06T13:36:35-07:00Mike Manilonehttp://code.activestate.com/recipes/users/4190728/http://code.activestate.com/recipes/578929-a-simple-calculator/ <p style="color: grey"> Tcl recipe 578929 by <a href="/recipes/users/4190728/">Mike Manilone</a> (<a href="/recipes/tags/calculator/">calculator</a>, <a href="/recipes/tags/gui/">gui</a>). </p> <p>A simple calculator. Calculation is done by [expr].</p> All in one Area Calculator (Python) 2014-07-03T09:16:14-07:00karimhttp://code.activestate.com/recipes/users/4190244/http://code.activestate.com/recipes/578901-all-in-one-area-calculator/ <p style="color: grey"> Python recipe 578901 by <a href="/recipes/users/4190244/">karim</a> (<a href="/recipes/tags/calculator/">calculator</a>, <a href="/recipes/tags/circlearea/">circlearea</a>, <a href="/recipes/tags/gui/">gui</a>, <a href="/recipes/tags/python3/">python3</a>, <a href="/recipes/tags/tkinter/">tkinter</a>, <a href="/recipes/tags/tranglearea/">tranglearea</a>, <a href="/recipes/tags/trianglearea/">trianglearea</a>). Revision 2. </p> <p>Its a python 3 based All in one Area Calculator.you can calculate Area of Rectangle,Area of Triangle and Area of Circle</p> BMI calculator (Python) 2011-10-14T16:20:29-07:00Alexander Thomas Cruzhttp://code.activestate.com/recipes/users/4179528/http://code.activestate.com/recipes/577897-bmi-calculator/ <p style="color: grey"> Python recipe 577897 by <a href="/recipes/users/4179528/">Alexander Thomas Cruz</a> (<a href="/recipes/tags/bmi/">bmi</a>, <a href="/recipes/tags/calculator/">calculator</a>). Revision 2. </p> <p>This code helps you figure out your BMI! Can perform three calculations. Also has a built in quit function. NEW! now can figure up to 10 calculations! I also have a metric version here: <a href="http://code.activestate.com/recipes/577907-bmi-calculator-metric/" rel="nofollow">http://code.activestate.com/recipes/577907-bmi-calculator-metric/</a></p> BMI calculator Metric (Python) 2011-10-14T16:20:04-07:00Alexander Thomas Cruzhttp://code.activestate.com/recipes/users/4179528/http://code.activestate.com/recipes/577907-bmi-calculator-metric/ <p style="color: grey"> Python recipe 577907 by <a href="/recipes/users/4179528/">Alexander Thomas Cruz</a> (<a href="/recipes/tags/bmi/">bmi</a>, <a href="/recipes/tags/calculator/">calculator</a>). </p> <p>This code helps you figure out your BMI! Can perform three calculations. Also has a built in quit function. NEW! now can figure up to 10 calculations! I also have a version with metric calculations.</p> Simple polynomial class (Python) 2014-02-13T20:55:55-08:00Sam Dentonhttp://code.activestate.com/recipes/users/4172262/http://code.activestate.com/recipes/576953-simple-polynomial-class/ <p style="color: grey"> Python recipe 576953 by <a href="/recipes/users/4172262/">Sam Denton</a> (<a href="/recipes/tags/arithmetic/">arithmetic</a>, <a href="/recipes/tags/calculator/">calculator</a>, <a href="/recipes/tags/polynomial/">polynomial</a>). Revision 7. </p> <p>This implements polynomial functions over a single variable in Python. It represents the polynomial as a list of numbers and allows most arithmetic operations, using conventional Python syntax. It does not do symbolic manipulations. Instead, you can do things like this:</p> <pre class="prettyprint"><code>x = SimplePolynomial() eq = (x-1)*(x*1) print eq # prints 'X**2 - 1' print eq(4) # prints 15 </code></pre> simple pygtk Calculator (Python) 2009-01-20T21:07:35-08:00mohsen javidhttp://code.activestate.com/recipes/users/4168857/http://code.activestate.com/recipes/576623-simple-pygtk-calculator/ <p style="color: grey"> Python recipe 576623 by <a href="/recipes/users/4168857/">mohsen javid</a> (<a href="/recipes/tags/calculator/">calculator</a>, <a href="/recipes/tags/pygtk/">pygtk</a>). </p> <p>this is a simple calculator maked whith python and gtk.</p>