4 lines
163 B
Python
Raw Normal View History

2018-10-06 10:12:01 +02:00
print("Das Eis kostet %.2f Euro" % ( 1.8 ) )
print("Die Vorlesung startet um %2d:%2d Uhr" % ( 9, 45 ))
print("Die Vorlesung startet um %02d:%02d Uhr" % ( 9, 45 ))