How to count all possible permutations of the abc without repetition in Python

1 Answer

0 votes
from math import factorial

print(factorial(len('abcdefghijklmnopqrstuvwxyz')))




'''
run:

403291461126605635584000000

'''

 



answered Oct 3, 2021 by avibootz
...