automaton | aut
The (accessible part of the) "tuple" of automata, ie the $k$-tape automaton whose behavior is the Cartesian product of the behaviors of the input automata.
See also:
import vcsn exp = vcsn.context('lan, q').expression e1 = exp('abc') a1 = e1.automaton() a1
e2 = exp('(<2>x)*') a2 = e2.automaton() a2
a1 | a2
(e1 | e2).automaton()