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