Tatoheba
print "year:%d, month:%d, day:%d" % (year, month, day)
Das heißt, der Operator '%' ist das Herzstück davon. Der Operator '%' bedeutet Modulo-Operation im Wertwert, überlädt ihn jedoch als Format in der Unicode-Zeichenfolge. In "Format% -Werte" wird die% -Konvertierungsspezifikation im Format durch 0 oder mehr Elemente in Werten ersetzt.
Übrigens in C ++ boost :: format ()
std::out << boost::format("year:%d, month:%d, day:%d") % year % month % day;
Recommended Posts