4 lines
83 B
Python
4 lines
83 B
Python
|
|
import itertools
|
||
|
|
for values in itertools.permutations([1,2,3]):
|
||
|
|
print (values)
|