mirror of
https://github.com/OpenBMB/ChatDev.git
synced 2026-05-23 00:43:58 +00:00
9 lines
264 B
Python
9 lines
264 B
Python
'''
|
|
This file contains the BMICalculator class.
|
|
'''
|
|
class BMICalculator:
|
|
def calculate_bmi(self, weight, height):
|
|
if height <= 0:
|
|
raise ValueError("Height cannot be zero or negative.")
|
|
bmi = weight / (height ** 2)
|
|
return bmi |