Sequence of all sub-modules. Submodules are modules which are properties of this module, or found as properties of modules which are properties of this module (and so on). ``` a = tf.Module() b = tf.Module() c = tf.Module() a.b = b b.c = c assert list(a.submodul
(self)