So formatieren Sie in Python mit Formatfunktion

age = 36
txt = "his age is {}"
print(txt.format(age))
Programmer of empires