如何在python中读取excel文件我已经使用了一些程序,但没有work.
我想创建单独设置的文件夹folder
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}")
1条答案
按热度按时间fdbelqdn1#
我希望,它能帮助你在了解如何读取excel文件,尝试正确地指定您的文件路径。在我的情况下。/意味着我的python文件存在的当前文件。移动您的excel文件,你的python文件存在
安装:
溶液1
溶液2