Skip to content

Instantly share code, notes, and snippets.

@notblizzard
Last active January 2, 2016 16:19
Show Gist options
  • Save notblizzard/8329594 to your computer and use it in GitHub Desktop.
Save notblizzard/8329594 to your computer and use it in GitHub Desktop.
# pythagorean theorem
from math import sqrt
def pory(a,b,c):
asquare = a*a
bsquare = b*b
c = asquare + bsquare
c = sqrt(c)
print "Solving the Pythagorean Theorem for "+a+" and "+b+" is "+c+""
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment