Monday, January 01, 2018

# Python Program to find creatinine clearance

# Python Program to find creatinine clearance
Age = float (input('please enter the Age of the patient in years:'))
Weight = float (input('please enter the Weight of the patient in kg:'))
Creatinine = float (input('please enter the Serum Creatinine of the patient in mg/dl:'))
Ccr = (((140-Age)*(Weight))/(Creatinine*72))
print (Ccr)

No comments: