我想在Colaboratory上运行一个Python程序。它可以使用PyCharm成功运行,但是需要__future__
。当我在协作实验室上尝试时,出现此错误。
from __future__ import annotations
^
SyntaxError: future feature annotations is not defined
关于如何在合作实验室中导入__future__
的任何建议?
谢谢。
答案 0 :(得分:1)
__future__
存在。该特定的__future__
功能没有。 Google合作实验室当前使用Python 3.6,而from __future__ import annotations
是3.7。
如果您需要Python 3.7,则必须等待。