# Example 1: Severe Trauma
# 9kg (-1), Unmaintainable (-1), SBP 45 (-1), Coma (-1), Major Wound (-1), Open Fx (-1)
# Score = -6
pediatric_trauma_score(9, "unmaintainable", 45, "coma", "major", "open_multiple")
# Example 2: Minor Trauma
# 25kg (+2), Normal Airway (+2), SBP 100 (+2), Awake (+2), Minor Wound (+1), None Fx (+2)
# Score = 11
pediatric_trauma_score(25, "normal", 100, "awake", "minor", "none")
Run the code above in your browser using DataLab