解决ImportError: cannot import name gcd from fractions 问题

好像 Python3.9 把 gcd 函数移入到 math 模块中了, 因此,将:

1
from fractions import gcd

改为:

1
from math import gcd

解决ImportError: cannot import name gcd from fractions 问题
http://example.com/2022/08/22/解决ImportError-cannot-import-name-gcd-from-fractions-问题/
作者
Jie
发布于
2022年8月22日
许可协议