Created
August 16, 2012 19:34
-
-
Save tlehman/3372945 to your computer and use it in GitHub Desktop.
Convert inches cubed to milimeters cubed (for use in excel)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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