python-CSD-kursu/python-temel/perm.comb.py

8 lines
92 B
Python
Raw Normal View History

2023-06-08 06:15:20 +00:00
import math
result = math.perm(6, 2)
print(result)
result = math.comb(6, 2)
print(result)