Created
July 25, 2015 04:16
-
-
Save shikajiro/30f7ca874d4a53ac9393 to your computer and use it in GitHub Desktop.
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
weight = 9.5 # your dog weight | |
isCastration = True # your dog coefficient | |
coefficient = 1.8 | |
if isCastration: | |
coefficient = 1.6 | |
calorie = coefficient * (30 * weight + 70) | |
print calorie |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment