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_Aufg3.py 197B

1234567891011
  1. listA = [2, 4.4, "HiHi", 15, 6.97]
  2. listB = [12, 82, "BlaBla"]
  3. listC = listA + listB
  4. print("listC: ", listC)
  5. listC.reverse()
  6. print("listC reverse: ", listC)
  7. #print("listC sort: ", listC.sort())