Skip to content

Instantly share code, notes, and snippets.

@tlehman
Created August 16, 2012 19:34
Show Gist options
  • Select an option

  • Save tlehman/3372945 to your computer and use it in GitHub Desktop.

Select an option

Save tlehman/3372945 to your computer and use it in GitHub Desktop.
Convert inches cubed to milimeters cubed (for use in excel)
def blob_in_to_mm(s):
return reduce(lambda l,r: l+" x "+r, map(str, map(lambda x: x*25.4, map(float, s.split(" x ")))), "")[3:-1]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment