Использование функции перестановок Python в списке с дополнительной функцией

from itertools import permutations
print(len(list(permutations([1,2,3,4],4))))
Outrageous Ostrich