1. ImportError: cannot import na
2021-04-06 本文已影响0人
yoyo9999
本质原因是不同python版本命名有区别
用下面代码替换from itertools import zip_longest:
try:
from itertools import zip_longest
except ImportError:
from itertools import izip_longest as zip_longest