mirror of
https://github.com/Alexander-D-Karpov/scripts.git
synced 2024-11-22 20:06:33 +03:00
9 lines
153 B
Python
9 lines
153 B
Python
|
from itertools import permutations
|
||
|
|
||
|
j = 1
|
||
|
|
||
|
for i in permutations("ВИКОРТ", r=6):
|
||
|
s = "".join(i) + " " + str(j)
|
||
|
j += 1
|
||
|
print(s)
|