# Dezimalzahlen (.) mit einer Genauigkeit von 3 für Gleitkommazahlen '0.333'
print('{0:.3f}'.format(1/3))

# Mit Unterstrichen (_) auffüllen und den Text zentrieren
#(^) mit einer Breite von 11 Zeichen '___hello___'
print('{0:_^11}'.format('hello'))

# Schlüsselwortbasiert 
print('{name} schrieb {buch}'.format(name='Swaroop', buch='A Byte of Python'))
