mirror of
https://github.com/Fare-spec/cours.git
synced 2025-12-08 03:00:37 +00:00
6 lines
111 B
Python
6 lines
111 B
Python
def produit_cartesien(*listes):
|
|
if listes == None:
|
|
return []
|
|
if len(listes) == 1:
|
|
return listes[0]
|