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.
我正在尝试用 Java 编译一些 Python 代码,并将其存储为 PyCode 对象。然后,我尝试逐行执行编译后的代码。但是,我似乎只能一次运行所有代码。如果我逐行编译代码,然后将每一行作为单独的语句执行,则 if 语句不起作用(它会引发异常,表示在 if 语句之后需要缩进的代码块)。我正在尝试这样做,因为我想在每行运行后检查变量的状态。更新此变量后,我想运行一些 Java 代码。
谢谢,里斯。
PS我正在运行Jython 2.5.3