针对你提出的问题“module 'math' has no attribute 'comb'”,我将从以下几个方面进行回答: 1. 解释'math'模块没有'comb'属性的原因 在Python的标准库中,math模块确实不包含comb这个函数。math模块主要提供了一些基础的数学运算函数,如三角函数、对数函数、幂函数等,但并不包含计算组合数(即从n个不同元素中取出...
" File "C:\software\python\python3.7\lib\site-packages\manimlib\utils\simple_functions.py", line 13, in choose return math.comb(n, k) AttributeError: module 'math' has no attribute 'comb'". It seems i need to use python3.8, but i don't want to change the python version. So is ...