Le langage et ses traductions
Accès indiciel

Syntaxealg : Accès indiciel

tab[k1, k2, ...] # syntaxe normale

tab[k1][k2][...] # autre écriture

SyntaxeC/C++ : Accès indiciel

tab[k1][k2][...]

SyntaxeJava : Accès indiciel

tab[k1][k2][...]

SyntaxePython : Accès indiciel

tab[k1][k2][...]