Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/data/math/Pythagoras
diff options
context:
space:
mode:
Diffstat (limited to 'data/math/Pythagoras')
-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