有没有办法在合作实验室中导入__future__

时间:2019-04-24 03:29:06

标签: python google-colaboratory

我想在Colaboratory上运行一个Python程序。它可以使用PyCharm成功运行,但是需要__future__。当我在协作实验室上尝试时,出现此错误。

    from __future__ import annotations
                                      ^
SyntaxError: future feature annotations is not defined

关于如何在合作实验室中导入__future__的任何建议?

谢谢。

1 个答案:

答案 0 :(得分:1)

__future__存在。该特定的__future__功能没有。 Google合作实验室当前使用Python 3.6,而from __future__ import annotations是3.7。

如果您需要Python 3.7,则必须等待。