python對(duì)excel表格的操作

# 工作簿, 工作表,單元格
#workbook ,sheet ,cell
# 靈活擦歐總各種對(duì)象,進(jìn)行修改‘
# 編輯樣式
%cd D:\python全站\office
D:\python全站\office
# pip install openpyxl
import openpyxl
wb = openpyxl.load_workbook('coop.xlsx')  
# 加載創(chuàng)建的表格coop.xlsx
wb.get_active_sheet()
c:\users\coop\miniconda3\envs\coop\lib\site-packages\ipykernel_launcher.py:1: DeprecationWarning: Call to deprecated function get_active_sheet (Use the .active property).
  """Entry point for launching an IPython kernel.

<Worksheet "Sheet2">
sh2 = wb.active
cell1 = sh2['A1']
print(cell1)
cell1.value
<Cell 'Sheet2'.A1>

'學(xué)生'
sh2['A1'].value
'學(xué)生'
sh2['A2'].coordinate
'A2'
sh2['A2'] = 'zhao'  # another sh2['A2'].value = 'zhao'
sh2['A2'].value
'zhao'
###########
sh2.title
'Sheet2'
sh2.title = '成績(jī)單'
sh2.title
'成績(jī)單'
wb.save('coop-1.xlsx')  # 另存為
##########
# 取sheet1的數(shù)據(jù),放入sheet2,成績(jī)> 65
# 打開(kāi)工作簿
%cd D:\python全站\office
import openpyxl
wb = openpyxl.load_workbook('coop.xlsx')
# 打開(kāi)sheet1,打開(kāi)sheet2

#操作sheet1,存入sheet2
# 另存為新的文件
D:\python全站\office
# sh2 = wb.get_sheet_by_name('Sheet1')  # 首寫大寫
sh2 = wb['Sheet1']  #對(duì)Sheet1頁(yè)面操作
sh3 = wb['Sheet2']  #對(duì)Sheet2頁(yè)面操作
for row in sh2.rows:  # 循環(huán)每一行 sh2.row()
    print(row)
    print(row[0].value, row[1].value)   # 打印的是元祖
(<Cell 'Sheet1'.A1>, <Cell 'Sheet1'.B1>)
學(xué)生 成績(jī)
(<Cell 'Sheet1'.A2>, <Cell 'Sheet1'.B2>)
coop 60
(<Cell 'Sheet1'.A3>, <Cell 'Sheet1'.B3>)
murphy 61
(<Cell 'Sheet1'.A4>, <Cell 'Sheet1'.B4>)
lisi 62
(<Cell 'Sheet1'.A5>, <Cell 'Sheet1'.B5>)
zhangsan 63
(<Cell 'Sheet1'.A6>, <Cell 'Sheet1'.B6>)
lilei 64
(<Cell 'Sheet1'.A7>, <Cell 'Sheet1'.B7>)
××× 65
(<Cell 'Sheet1'.A8>, <Cell 'Sheet1'.B8>)
hao 66
for rows in sh2.rows:
    if rows[0].coordinate != 'A1':   #元祖用法
        #rows[0].coordinate去坐標(biāo),不等于A1
        print(rows[0].value, rows[1].value)
coop 60
murphy 61
lisi 62
zhangsan 63
lilei 64
××× 65
hao 66
for rows in sh2.rows:
    if rows[0].coordinate != 'A1' and rows[1].value >63: 
        #rows[0].coordinate去坐標(biāo),不等于A1
        print(rows[0].value, rows[1].value)
lilei 64
××× 65
hao 66
index = 2
for rows in sh2.rows:
    if rows[0].coordinate != 'A1' and rows[1].value >63: 
        #rows[0].coordinate去坐標(biāo),不等于A1
        print(rows[0].value, rows[1].value)
        sh3['A' + str(index)] = rows[0].value
        sh3['B' + str(index)] = rows[1].value
        print('in sh3:', sh3['A'+str(index)].value,sh3['B'+ str(index)].value)
        index += 1
wb.save('coop-2.xlsx')
lilei 64
in sh3: lilei 64
××× 65
in sh3: ××× 65
hao 66
in sh3: hao 66
# 第二種寫法,根據(jù)范圍取值
#A2 B2
# A3, B3
# index = 2
sh2 = wb['Sheet1']
sh3 = wb['Sheet3']
for rows in range(2, sh2.max_row +1):
    grade = sh2.cell(row = rows, column = 2).value
#     print(grade)
#     print(type(grade))
    if grade > 63:
        sh3['A' + str(rows)] = sh2.cell(row = rows, column = 1).value
        sh3['B' + str(rows)] = grade
        print('in sh3:', sh3['A'+str(index)].value,sh3['B'+ str(index)].value)

wb.save('coop-3.xlsx')
in sh3: None None
in sh3: None None
in sh3: None None
print(sh2.max_row)
8
# 最后一行添加平均分?jǐn)?shù)
sh2.cell(row=9, column=2).value = '=average(B2:B8)'
sh2.cell(row=9, column=1).value = '平均分'
print(sh2['B10'].value)
wb.save('coop-4.xlsx')
None
print(sh2['B9'].value)
=average(B2:B8)
from openpyxl.styles import Font
# Font?
font = Font(bold =True, size = 20) # name, size, bold, italic...
sh2['B9'].font = font

wb.save('coop-5.xlsx')

文章題目:python對(duì)excel表格的操作
URL鏈接:http://bm7419.com/article26/jjcsjg.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供企業(yè)網(wǎng)站制作做網(wǎng)站、軟件開(kāi)發(fā)、全網(wǎng)營(yíng)銷推廣、網(wǎng)站改版、搜索引擎優(yōu)化

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)

手機(jī)網(wǎng)站建設(shè)