2 lines
66 B
Python
2 lines
66 B
Python
|
import itertools
|
||
|
print(list(itertools.permutations([1,2,3])))
|