From d4bdd11e31b5531db4cb20404f14d3b47abff594 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mert=20G=C3=B6r?= Date: Thu, 8 Jun 2023 09:15:20 +0300 Subject: [PATCH] perm & comb --- python-temel/perm.comb.py | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 python-temel/perm.comb.py 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)