1 在stackoverflows摘抄 If the import module in the same dir, use e.g: from . import core If the import module in the top dir, use e.g: from .. import core If the import module in the other subdir, use e.g: from ..other import core 2 ValueError: Attempte…