后端开发完成

This commit is contained in:
Your Name
2026-01-26 18:21:34 +08:00
parent 40d2f3f6ac
commit b3876bba89
64 changed files with 1736 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
import pandas as pd
# Excel 文件路径
EXCEL_FILE = "/home/xsl/code/xsl_node/docs/example.xls"
# 读取 Excel 文件
df = pd.read_excel(EXCEL_FILE)
# 打印列名
print("Excel 文件列名:")
print(df.columns.tolist())
# 打印前 5 行数据
print("\nExcel 文件前 5 行数据:")
print(df.head())