top of page

Primary care

1

Your new family doctors

As general practitioners, we have undergone broad training and have consciously chosen to provide outpatient and personalized care. We look forward to meeting you and supporting you in your health!

2

Chronic diseases

We care for you with your chronic illnesses. During our consultation hours, we can regularly assess your situation and, if necessary, initiate further examinations or treatments. We want to support you and maintain a high quality of life.

3

Acute consultation

Of course, you can make an appointment with us at short notice if you have acute complaints or illnesses. Please call us first – we will do our best to arrange an appointment for you as soon as possible.

If you have a respiratory infection, please wear a mask.

bottom of page
def berechne_bmi(gewicht_kg, groesse_m): # BMI = Gewicht / (Größe * Größe) bmi = gewicht_kg / (groesse_m * groesse_m) return bmi def interpretiere_bmi(bmi): if bmi < 18.5: return "Untergewicht" elif 18.5 <= bmi < 25: return "Normalgewicht" elif 25 <= bmi < 30: return "Übergewicht" else: return "Fettleibigkeit (Adipositas)" # Beispielhafte Benutzereingabe gewicht = float(input("Bitte geben Sie Ihr Gewicht in kg ein: ")) groesse = float(input("Bitte geben Sie Ihre Größe in Metern ein: ")) # BMI berechnen und interpretieren ergebnis_bmi = berechne_bmi(gewicht, groesse) kategorie = interpretiere_bmi(ergebnis_bmi) print(f"Ihr BMI beträgt: {ergebnis_bmi:.2f}") print(f"Ihre Gewichtskategorie ist: {kategorie}")