Syntaxe : alg : Formats d'édition
exprChaine : largeur1
exprEntier : largeur1
exprReel : largeur1 : largeur2
Syntaxe : C : Formats d'édition
%largeur1 . largeur2 conversion
Syntaxe : C++ : Formats d'édition
#include <iomanip>
cout << setw(largeur1) << exprChaine;
cout << setw(largeur1) << exprEntier;
cout << fixed << setprecision(largeur2) << setw(largeur1) << exprReel;
Syntaxe : Java : Formats d'édition
System.out.printf("txtfmt", expr1, expr2, ..., exprN);
Syntaxe : Python : Formats d'édition
print("{largeur1}".format(exprChaine))
print("{largeur1}".format(exprEntier))
print("{largeur1:.largeur2f}".format(exprReel))