[root@localhost data_clear]# python3 xlsx_each_csv.py Traceback (most recent call last): File "xlsx_each_csv.py", line 4, in <module> from third import pandas as pd File "/root/data_clear/third/pandas/__init__.py", line 1 from __future__ import annotations ^ SyntaxError: future feature annotations is not defined
时间: 2024-03-28 18:38:00 浏览: 112
python写入数据到csv或xlsx文件的3种方法
这个错误是因为你在代码中使用了 Python 3.7 之后才引入的一个特性:future feature annotations。这个特性允许你在注释中使用新的类型提示语法,但是在 Python 3.7 之前并不支持。
要解决这个问题,你需要升级你的 Python 版本到 3.7 或以上。如果你不能升级 Python 版本,你可以尝试使用旧的类型提示语法,或者避免使用注释中的类型提示。
阅读全文