python 표 테두리 설정 방법

2938 단어 python표 테두리
xlwings 설치
직접 설치 용 pip install xlwings,anaconda 로 내장 되 어 있 습 니 다.다음 그림 을 보십시오.
4.jpg
xlwings 가 져 오기

import xlwings as xw
Excel 파일 열기

#       Excelapp = xw.App() 
#     
wb = xw.Book('data/         .xlsx') 
#     ws = wb.sheets['Sheet1']  #     
메모:좋 은 습관 을 기 르 려 면 데이터 파일 과 프로그램 파일 을 분리 하여 저장 하고 일반 데이터 파일 은 data 서브 디 렉 터 리 에 저장 해 야 합 니 다.
표 행렬 가 져 오기

last_column = ws.range(1, 1).end('right').get_address(0, 0)[0] #       
last_row = ws.range(1, 1).end('down').row #       
a_range = f'A1:{last_column}{last_row}'  #          
여기 arange 출력 범 위 는 A1:D6,즉 데이터 시트 의 전체 내용 입 니 다.
설정 arange,즉 A1:D6 의 표 테두리
\#테두리 설정

ws.range(a_range).api.Borders(8).LineStyle = 1  #    
ws.range(a_range).api.Borders(9).LineStyle = 1  #    
ws.range(a_range).api.Borders(7).LineStyle = 1  #    
ws.range(a_range).api.Borders(10).LineStyle = 1  #    
ws.range(a_range).api.Borders(12).LineStyle = 1  #     
ws.range(a_range).api.Borders(11).LineStyle = 1  #     
Borders()의 인 자 는 다음 과 같 습 니 다.
5.jpg
Line Style=1,여기 1 은 테두리 가 실선 을 가리킨다.
테두리 스타일
6.jpg
여기까지 계산 이 끝나 지 않 았 습 니 다.엑셀 을 닫 고 xlsx 파일 을 저장 해 야 합 니 다.

#       Excel
wb.save('data/         .xlsx')
wb.close()
app.quit()
여기 서 테 두 리 를 설정 하 는 작업 이 완료 되 었 습 니 다.
인 스 턴 스 확장:
Python Excel 표 테두리 빠 른 설정

import xlwings as xw
#     excel
app = xw.App() #    
wb = xw.Book("E:/Data/         .xlsx") #    
ws = wb.sheets['Sheet1'] #    

last_column = ws.range(1, 1).end('right').get_address(0, 0)[0] #     
last_row = ws.range(1, 1).end('down').row #     

a_range = f'A1:{last_column}{last_row}' #         

#    
ws.range(a_range).api.Borders(8).LineStyle = 1 #   
ws.range(a_range).api.Borders(9).LineStyle = 1 #   
ws.range(a_range).api.Borders(7).LineStyle = 1 #   
ws.range(a_range).api.Borders(10).LineStyle = 1 #   
ws.range(a_range).api.Borders(12).LineStyle = 1 #    
ws.range(a_range).api.Borders(11).LineStyle = 1 #    

#     excel
wb.save("E:/Data/         2.xlsx")
wb.close()
app.quit()
python 이 표 의 테 두 리 를 설정 하 는 구체 적 인 방법 에 관 한 이 글 은 여기까지 소개 되 었 습 니 다.python 이 표 의 테 두 리 를 어떻게 설정 하 는 지 에 관 한 더 많은 글 은 우리 의 이전 글 을 검색 하거나 아래 의 관련 글 을 계속 찾 아 보 세 요.앞으로 많은 지원 을 바 랍 니 다!

좋은 웹페이지 즐겨찾기