@ Introducing Python: Modern Computing in Simple Packages by Bill Lubanovic (No. 2351 / 12833)
Un exemple de création d'un tableau en utilisant la notation d'inclusion est publié.
http://ideone.com/QJqVpn
rows = range(1,4)
cols = range(1,3)
cells = [(row, col) for row in rows for col in cols]
for cell in cells:
print(cell)
résultat
Success time: 0 memory: 23968 signal:0
(1, 1)
(1, 2)
(2, 1)
(2, 2)
(3, 1)
(3, 2)
(Ajout 2017/03/24)
Le [Commentaire] de @ shiracamus (http://qiita.com/7of9/items/a447b8bbf940ef4448bb#comment-2d6febe4dcd9a4636ec5) m'a appris à utiliser itertools.
Merci pour l'information.