Skip to content

Instantly share code, notes, and snippets.

@lxneng
Created December 16, 2011 07:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lxneng/1484917 to your computer and use it in GitHub Desktop.
Save lxneng/1484917 to your computer and use it in GitHub Desktop.
>>> import math
>>> a = (1,1)
>>> b = (1,2)
>>> math.sqrt((b[0] - a[0])**2 + (b[1] - a[1]) ** 2)
1.0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment