Dieses Repository enthält Python-Dateien die im Rahmen des Wahlpflichtmoduls "Informationssysteme in der Medizintechnik" (Dozent: Prof. Dr. Oliver Hofmann) erstellt wurden und verwaltet deren Versionskontrolle.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

AB1_Aufg5.py 526B

1234567891011121314
  1. myData = {"first":"Jonka", "last":"Winkle", "day":10, "month":11, "year":1995}
  2. print("Ganzer Name: ", myData["first"], myData["last"])
  3. print("Geburtsdatum: ", myData["day"], myData["month"], myData["year"])
  4. def geburtstag(dictio):
  5. returnStr = str(dictio["day"]) + "." + str(dictio["month"])+ "." + str(dictio["year"])
  6. #alternativ: returnStr = "{:02d}.{:02d}.{:04d}".format(dictio["day"], dictio["month"], dictio["year"])
  7. return returnStr
  8. print("Hier das Ergebnis der geburtstag()-Fkt: ", geburtstag(myData))