AccountingForm[expr] prints with all numbers in expr given in standard accounting notation. AccountingForm[expr, n] prints with numbers given to n-digit precision.
And
(Built-in Mathematica Symbol) e_1 && e_2 && ... is the logical AND function. It evaluates its arguments in order, giving False immediately if any of them are False, and True if they are all True.
Cycles
(Built-in Mathematica Symbol) Cycles[{cyc_1, cyc_2, ...}] represents a permutation with disjoint cycles cyc_i.
Epilog
(Built-in Mathematica Symbol) Epilog is an option for graphics functions that gives a list of graphics primitives to be rendered after the main part of the graphics is rendered.
FractionalPart[x] gives the fractional part of x.
Framed
(Built-in Mathematica Symbol) Framed[expr] displays a framed version of expr.
KirchhoffMatrix[g] gives the Kirchhoff matrix of the graph g.
Nor
(Built-in Mathematica Symbol) Nor[e_1, e_2, ...] is the logical NOR function. It evaluates its arguments in order, giving False immediately if any of them are True, and True if they are all False.
Or
(Built-in Mathematica Symbol) e_1 || e_2 || ... is the logical OR function. It evaluates its arguments in order, giving True immediately if any of them are True, and False if they are all False.
Partition[list, n] partitions list into non-overlapping sublists of length n. Partition[list, n, d] generates sublists with offset d. Partition[list, {n_1, n_2, ...}] ...