Mir ist aber heute beim Durchlesen von ein paar Artikeln aufgefallen, dass C++ std::format sich an der Python-Syntax orientiert.
Der Heise-Artikel dazu: https://www.heise.de/blog/std-format-in ... 19132.html
C++:
Code: Alles auswählen
print("I'd rather be {1} than {0}.\n", "right", "happy");
Code: Alles auswählen
print("I'd rather be {1} than {0}.\n".format("right", "happy"))
Die Veröffentlichung war am 14.02.2009, also 11 Jahre eher als bei C++.