0
時,我有一個類,它看起來像下面蟒蛇2語法錯誤運行的Python 3代碼
class ExperimentResult(BaseDataObject):
def __init__(self, result_type: str, data: dict, references: list):
super().__init__()
self.type = result_type
self.references = references
self.data = data
def __repr__(self):
return str(self.__dict__)
當我試圖運行它在Python 2 當我運行的代碼是用Python編寫3它我得到
def __init__(self, result_type: str, data: dict, references: list):
^
SyntaxError: invalid syntax
有沒有「import_from_future」來解決這個問題?
真正溶膠ution是*停止運行** Python 2中的所有**代碼* –