#執行該程式,首先在桌面新建乙個名為"資料.xlsx"的excel檔案,並且該excle具有有效資料
# 第一步:匯入包
from openpyxl import load_workbook, workbook
import os
# 第二步:定義函式,返回檔案存放的路徑
def getdesktoppath():
return os.path.join(os.path.expanduser('~'), 'desktop')
# 第三步:定義變數儲存路徑
path = getdesktoppath() + '/'
# 第四步:開啟指定檔案
workbook = load_workbook(path + '資料.xlsx')
# 第五步:獲取有資料的sheet
sheet = workbook.active
# 第六步:獲取第三行的資料,並將第三行資料存放在cells變數中
cells = sheet[3]
# 第七步:列印第三行第乙個單元格的資料,即a3
print(str(cells[0].value))
原創: python3進行excel操作
只要有需求,就會找出解決問題的方法 pip install xlrd 讀取 pip install xlwt 寫入 首先先初始化 import xlwt excel xlwt.workbook encoding utf 8 建立excel sheet excel.add sheet member 建...
python3讀取excel內容(1)
通過python讀取excel中sheet裡邊的內容 import xlrd myfile xlrd.open workbook 1.xlsx 開啟乙個excle檔案 table myfile.sheets 0 開啟第乙個sheet nrows table.nrows 讀取該sheet的行數 for...
python3獲取請求cookie
github鏈結 使用python庫直接獲取cookie defget cookie url param url 請求連線應保證伺服器有set cookie寫入操作 return 請求負載 data 請求頭 headers try 宣告乙個cookiejar物件例項來儲存cookie cookie ...