LoginSignup
3
1

More than 5 years have passed since last update.

Call to deprecated function get_sheet_by_name

Posted at

get_sheet_names() は古い
wb.sheetnamesを使う

book = op.load_workbook('test.xlsx', data_only=True)


sheet = book.get_sheet_by_name('Sheet1') 


sheet = book['Sheet1']

3
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
3
1