1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

【お手軽Python】openpyxlによるExcelファイル読み込み

Last updated at Posted at 2020-02-09

#OpenPyXLとは
openpyxlとは、Pythonのライブラリです。
openpyxlは、Excelファイルを操作する時に使われます。

Excel操作に特化したライブラリなので、軽量で使いやすいという利点があります。

#Excelファイルの読み込み

sample.xlsxの中身が

bandicam 2020-01-20 16-36-57-804.jpg

だった場合

wb = openpyxl.load_workbook('sample.xlsx')

とすることで、Workbookオブジェクトを取得できます。
さらに

ws = wb['sheet1']

とすることで、Worksheetオブジェクトを取得できます。
これでsample.xlsxのシート名'sheet1'の情報がwsに入ったことになります。

###指定のセル読み込み

main.py
import openpyxl

wb = openpyxl.load_workbook('sample.xlsx')
ws = wb['sheet1']

ここまでは共通であるとします。

####Excelの指定文字列で取得

main.py
cell = ws['A2'] # A

####行番号、列番号を指定して取得

main.py
cell = ws.cell(row=2, column=1) # B

A,Bのcellの値(value)は、どちらも「1」となります。

main.py
print(cell.value) # 1が表示される

#まとめ

OpenPyXLを使ってExcelファイルを読み込む方法を紹介しました。
PythonでExcelファイルを操作するのにはうってつけのライブラリなので、是非使ってみてください。

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?