diff --git a/python-temel/perm.comb.py b/python-temel/perm.comb.py new file mode 100644 index 0000000..3bf8a38 --- /dev/null +++ b/python-temel/perm.comb.py @@ -0,0 +1,7 @@ +import math + +result = math.perm(6, 2) +print(result) + +result = math.comb(6, 2) +print(result)