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