Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/data/math
diff options
context:
space:
mode:
authorChris Ball <cjb@pullcord.laptop.org>2007-11-02 15:53:38 (GMT)
committer Chris Ball <cjb@pullcord.laptop.org>2007-11-02 15:53:38 (GMT)
commitb3d6deea4a5123bcf5b21fd772ef3eee70bf3673 (patch)
tree53c9393115f01d7a04c559ecef94129e6a439911 /data/math
parent661c0bc1d2f4b4de744c06c4d810efbbe488b731 (diff)
Fix i18n, remove pythagoras for now, add thanks.
Diffstat (limited to 'data/math')
-rw-r--r--data/math/Pythagoras10
1 files changed, 0 insertions, 10 deletions
diff --git a/data/math/Pythagoras b/data/math/Pythagoras
deleted file mode 100644
index fb4dbd8..0000000
--- a/data/math/Pythagoras
+++ /dev/null
@@ -1,10 +0,0 @@
-import math
-from math import sqrt
-
-print "This is the Pythagoras Theorem"
-a=float(raw_input("Type a ="))
-b=float(raw_input("Type b ="))
-
-c=sqrt((a*a)+(b*b))
-
-print "c =",c