Initial commit

This commit is contained in:
ChuXun
2025-12-24 21:38:40 +08:00
commit 95028f8070
4 changed files with 210 additions and 0 deletions

4
xlsx2csv/xlsx2csv.py Normal file
View File

@@ -0,0 +1,4 @@
import pandas as pd
# 自动处理了中文编码,避免乱码
df = pd.read_excel("1.xlsx")
print(df.to_csv(index=False))