import itertools for x in itertools.permutations("abcd"): print x
('a', 'b', 'c', 'd') ('a', 'b', 'd', 'c') ・・・・・ ('d', 'c', 'a', 'b') ('d', 'c', 'b', 'a')
0 件のコメント:
コメントを投稿