Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 Android 上使用 QPython 中的交互式控制台时,chdir'ed 到包含 .py 文件的目录,尝试导入它们会导致“找不到模块”。问题是 sys.path 的第一个元素是 '',而不是 '.'。在 os.chdir() 之前或之后将 sys.path[0] 设置为 '.' 可以解决此问题。