def save_data(name, weight, height, bmi): today = date.today() file_exists = os.path.exists("bmi_data.csv") with open("bmi_data.csv", "a", newline="") as file: writer ...
This project is a simple BMI (Body Mass Index) Calculator built using Python in Jupyter Notebook. The goal of this project is to practice Python basics and understand how to apply programming logic in ...