How to Solve NameError: name 'comb' is not defined -- math

Solution: Import the 'comb' module

To Solve the error, add the following line to the top of your code.

from math import comb

 

For more information:
Python math comb