關於python操作excel,xlwt,xlwd,最簡單的操作介紹
關於使用python中的xlwt,xlrd最基本的認識
excel的index是從0開始的
xlwt 寫入excel
主要用到
xls = xlwt.Workbook() #建立一個excle
sheet = xls.add_sheet(“sheet1”) #建立一個sheet
現在就可以操作了,sheet已經建立好了
sheet.write(row,col,“data”) #在第row行col列寫入data
xls.save(" 儲存地址")
wlrd 讀取excle
主要包括
xls = xlrd.open_wordbook(“檔案路徑”) # 讀取excle
xls.sheet_names()[index] #返還所有的sheet ,可以在後面加[ index]返還指定的sheet
#sheet = sheet.
xls.sheet_by_name(“name”) #返還名字為name的sheet
xls.sheet_by_index(data) # 返還。。
返還某一列
#sheet1 = sheet_by_index(0)
shee1.row_values(n) #獲取第n行的全部資料
sheet1.col_values(n) #獲取第n列的全部資料
返還某一個單元格
shee1.cell(1,1).value() # 返回sheet1的二行二列的資料
sheet1.cell_value(1,1) # 同上
sheet1.cell(1,1),ctype() # 獲取單元格的屬性
2020/10/7
相關文章
- 關於PHP檔案操作的簡單介紹PHP
- javascript陣列操作簡單介紹JavaScript陣列
- javascript如何操作iframe簡單介紹JavaScript
- node.js操作mongodb簡單介紹Node.jsMongoDB
- javascript讀寫cookie操作簡單介紹JavaScriptCookie
- 關於keras框架的介紹以及操作使用Keras框架
- jquery操作select下拉選單簡單介紹jQuery
- 關於 React Hooks 的簡單介紹ReactHook
- java關於事件的簡單介紹Java事件
- javascript操作html元素屬性簡單介紹JavaScriptHTML
- javascript DOM元素節點操作簡單介紹JavaScript
- 關於C語言的簡單介紹C語言
- 關於dva框架的簡單操作以及demo框架
- jquery實現的操作class樣式類簡單介紹jQuery
- python第三方庫——xlrd和xlwt操作Excel檔案學習PythonExcel
- 【原】關於Oracle Merge操作的簡單用法Oracle
- Python 序列通用操作介紹Python
- 關於MFC操作Excel的幾點心得Excel
- pt-online-schema-change的操作原理簡單介紹
- javascript關於URI相關內容簡單介紹JavaScript
- Python簡單介紹Python
- 關於Python的迭代操作Python
- Teradata資料庫功能操作簡單介紹(轉載)資料庫
- 關於thinkphp連貫操作加鎖的詳細介紹lockPHP
- python操作excelPythonExcel
- 你想不到的最簡單php操作MySQLPHPMySql
- 用SpringMVC來簡單的操作Excel檔案SpringMVCExcel
- js關於物件直接量的拷貝簡單介紹JS物件
- MATLAB神經網路工具箱(簡單操作介紹)Matlab神經網路
- 簡單介紹CentOS6升級glibc操作步驟CentOS
- vue匯出excel(簡單方法完整介紹)VueExcel
- 關於什麼是jsonp概念簡單介紹JSON
- 簡單介紹python在CMD介面讀取excel所有資料PythonExcel
- python 操作 Excel 表格PythonExcel
- python 3 操作 excelPythonExcel
- Python對excel的基本操作PythonExcel
- Git 分支操作介紹Git
- 簡單介紹python process模組Python