Skip to content

Instantly share code, notes, and snippets.

@shikajiro
Created July 25, 2015 04:16
Show Gist options
  • Save shikajiro/30f7ca874d4a53ac9393 to your computer and use it in GitHub Desktop.
Save shikajiro/30f7ca874d4a53ac9393 to your computer and use it in GitHub Desktop.
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