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_Aufg4.py 163B

123
  1. print("Das Eis kostet %.2f Euro" % ( 1.8 ) )
  2. print("Die Vorlesung startet um %2d:%2d Uhr" % ( 9, 45 ))
  3. print("Die Vorlesung startet um %02d:%02d Uhr" % ( 9, 45 ))