0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Python code task

Posted at

Task

How many different ways are there to use 16 possible variables? Give the Python code.

Verbalization

Calculation formula is 18C0 + 18C1 +18C2 …… + 18C18
nCr = n!/((n-r)!*r!) (use from math import factorial factorial(i) = i!)
Use roop and += (for i in range(18+1))

Code

from math import factorial

#test n=18C0 
n= factorial(18)/factorial(18-0)*factorial(0)
n  


#test How many different ways are there to use 3 possible adjustment variables?
n =factorial(3)/(factorial(3-0)*factorial(0)) +factorial(3)/(factorial(3-1)*factorial(1)) +factorial(3)/(factorial(3-2)*factorial(2)) +factorial(3)/(factorial(3-3)*factorial(3))
n

h = 16
n = 0
for i in range(0,h+1):
    f = factorial(h)/(factorial(h-i)*factorial(i))    
    n += f
n

Reference

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?