加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
read_excel.py 302 Bytes
一键复制 编辑 原始数据 按行查看 历史
gedingbaod 提交于 2024-08-16 22:33 . 交易时间间隔
import pandas as pd
import openpyxl
def ReadExcel(file_path):
# Load the Excel file
# file_path = 'D:\\01.餐饮\\交易时间.xlsx'
data = pd.read_excel(file_path)
# Display the content of the Excel file to understand its structure
data.head()
# print(data)
return data
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化