python 은 openpyxl 라 이브 러 리 를 사용 하여 엑셀 표 데이터 방법 을 수정 합 니 다.

3461 단어 pythonopenpyxlexcel
1.openpyxl 라 이브 러 리 는 xlsx 형식의 파일 을 읽 을 수 있 고 xls 의 오래된 형식의 파일 은 xlrd 로 만 읽 을 수 있 으 며 xlwt 로 만 쓸 수 있 습 니 다.
단순 패키지 종류:

from openpyxl import load_workbook
from openpyxl import Workbook
from openpyxl.chart import BarChart, Series, Reference, BarChart3D
from openpyxl.styles import Color, Font, Alignment
from openpyxl.styles.colors import BLUE, RED, GREEN, YELLOW
class Write_excel(object):
  def __init__(self,filename):
    self.filename = filename
    self.wb = load_workbook(self.filename)
    self.ws = self.wb.active
  def write(self, coord, value):
    # eg: coord:A1
    self.ws.cell(coord).value = value
    self.wb.save(self.filename)
  def merge(self, rangstring):
    # eg: rangstring:A1:E1
    self.ws.merge_cells(rangstring)
    self.wb.save(self.filename)
  def cellstyle(self, coord, font, align):
    cell = self.ws.cell(coord)
    cell.font = font
    cell.alignment = align
  def makechart(self, title, pos, width, height, col1, row1, col2, row2, col3, row3, row4):
    ''':param title:   
         pos:    
         width:    
         height:    
    '''
    data = Reference(self.ws, min_col=col1, min_row=row1, max_col=col2, max_row=row2)
    cat = Reference(self.ws, min_col=col3, min_row=row3, max_row=row4)
    chart = BarChart3D()
    chart.title = title
    chart.width = width
    chart.height = height
    chart.add_data(data=data, titles_from_data=True)
    chart.set_categories(cat)
    self.ws.add_chart(chart, pos)
    self.wb.save(self.filename)
간단 한 사용:
1.새로운 엑셀 파일 처리

wb = Workbook()#      
ws = wb.active#      
ws1 = wb.create_sheet("Mysheet")#  mysheet  
ws.title = "New Title"#    New Title 
ws.sheet_properties.tabColor = "1072BA"#   
ws['A4'] = 4#   
d = ws.cell(row=4, column=2, value=10)#   
cell_range = ws['A1':'C2']#        
wb.save('test.xlsx')#   
2.이미 excel 파일 의 처리
a.엑셀 데이터 수정

wr = Write_excel('d:\demo.xlsx') 
wr.write('A2','hello') 
b.병합 셀

wr.merge('A1:B3') 
c.셀 추가 스타일,예 를 들 어 글꼴,색상 등 속성
셀 B2 설정 송 체,14 번,빨간색,자동 줄 바 꾸 기,수평 가운데,수직 가운데

font = Font(name=u'  ', size=14, color=RED, bold=True)
align = Alignment(horizontal='center', vertical='center')
wr.cellstyle('B2', font, align)
d、3d 막대 그래프 만 들 기

rows = [ 
  (None, 2013, 2014), 
  ("Apples", 5, 4), 
  ("Oranges", 6, 2), 
  ("Pears", 8, 3) 
] 
 
for row in rows: 
  ws.append(row) 
 
wr.makechart(u"3D Bar Chart", 'E5', 12.5, 7, 2, 1, 3, 4, 1, 2, 4) 

3d 기둥 모양 과 접 는 선 도 표를 만 들 수 있어 서 좋 습 니 다.
공식 문서:https://openpyxl.readthedocs.io/en/latest/usage.html
이상 의 python 은 openpyxl 라 이브 러 리 를 사용 하여 엑셀 표 데 이 터 를 수정 하 는 방법 은 바로 작은 편집 이 여러분 에 게 공유 하 는 모든 내용 입 니 다.여러분 께 참고 가 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.

좋은 웹페이지 즐겨찾기