如何在python中读取excel表格数据

b4qexyjb  于 2023-02-15  发布在  Python
关注(0)|答案(1)|浏览(152)

如何在python中读取excel文件我已经使用了一些程序,但没有work.

我想创建单独设置

的文件夹folder

fdbelqdn

fdbelqdn1#

我希望,它能帮助你在了解如何读取excel文件,尝试正确地指定您的文件路径。在我的情况下。/意味着我的python文件存在的当前文件。移动您的excel文件,你的python文件存在

安装:

pip install pandas openpyxl

溶液1

import pandas as pd
df = pd.read_excel('./TfidfVectorizer_sklearn.xlsx')
df

溶液2

import openpyxl

book = openpyxl.load_workbook('./TfidfVectorizer_sklearn.xlsx')

sheet = book.active
cells = sheet['A1': 'D5']

for c1, c2, c3, c4 in cells:
    print(f"{c1.value} {c2.value} {c3.value} {c4.value}")

相关问题