本质原因是不同python版本命名有区别
用下面代码替换from itertools import zip_longest
:
try:
from itertools import zip_longest
except ImportError:
from itertools import izip_longest as zip_longest
本质原因是不同python版本命名有区别
用下面代码替换from itertools import zip_longest
:
try:
from itertools import zip_longest
except ImportError:
from itertools import izip_longest as zip_longest
本文标题:1. ImportError: cannot import na
本文链接:https://www.haomeiwen.com/subject/ewiskltx.html
网友评论