0

我正在尝试在 python shell 上执行“import android”命令。它给出了这样的错误:

>>> **import android**  
    Traceback (most recent call last):  
File "<pyshell#11>", line 1, in <module>  
  import android  
File ".\android.py", line 51  
  print result['error']    
             ^

我在 PC(Windows 7)上安装了 python 3.3.2,并且在我的系统的 python 目录中有 android.py(SL4A),系统路径也包含 python。

请帮助解决此错误。

4

1 回答 1

1

Print 在 Python 3 上从语句更改为函数。您尝试导入的模块(android)是为 Python 2 编写的。

您应该使用 Python 2 解释器,或者找到(或制作)与 Python 3 兼容的模块。

于 2013-11-05T10:13:27.560 回答