标签: python-3.x
当我尝试导入我自己的特定文件时,会出现错误ModuleNotFoundError: no module named '(file_name)' 这是我的代码:
ModuleNotFoundError: no module named '(file_name)'
import file_name
我已经尝试sys.path.append(r'path\to\my\file')
sys.path.append(r'path\to\my\file')
但也没有成功:(