Python (2) 썸네일형 리스트형 [ Python Code ] xlsx 파일 html 코드로 변경하기 xlsx 파일 html 코드로 변경하려고 다른 이름으로 저장해서 변경하면 json 형식으로 바꿔준다.따라서 유용하게 쓸 수가 없음그래서 다음과 같은 코드로 파일을 변경해줘야함!import pandas as pd# 엑셀 파일을 읽어옵니다.excel_file = '절대경로'# 엑셀 파일의 첫 번째 시트를 데이터프레임으로 읽어옵니다.df = pd.read_excel(excel_file, sheet_name=0)# 데이터프레임을 HTML로 변환합니다.html_content = df.to_html(index=False)# HTML 파일로 저장합니다.(워킹디렉토리에 저장됨)with open('output.html', 'w', encoding='utf-8') as file: file.write(html_cont.. [Python] Pretty Printer 예쁘게 출력하기 json 형태의 결과를 읽을 때, 그냥 읽으면 1 2 3 4 5 6 7 8 9 10 11 12 13 14 # 출력 결과 비교(pprint) import this from urllib import request import json response = request.urlopen("https://jsonplaceholder.typicode.com/users") response_json = response.read() d = json.loads(response_json) # 출력 결과 비교(print) print(d) Colored by Color Scripter cs 위와 같이 알아보기 어렵게 나온다. 그러나 pprint를 사용하여 출력하면 1 2 3 from pprint import pprint ppri.. 이전 1 다음