import openpyxl
def doExcel():
ex = openpyxl.Workbook() #엑셀 생성.
ex.create_sheet("sheet1") #테스트 시트 추가.
sheet = ex["sheet1"] #시트 선택
sheet['A1'] = "i'm jacy"
sheet['B1'] = "hello"
sheet.cell(1, 3, 30)
sheet.cell(row=1, column=4, value=40)
sheet.cell(1, 5, "=SUM(C1:D1)/2")
ex.save('/Users/gimdonghwan/파이썬강의준비/codingExcel.xlsx')
# Press the green button in the gutter to run the script.
if __name__ == '__main__':
doExcel()
# See PyCharm help at https://www.jetbrains.com/help/pycharm/
'파이썬 python' 카테고리의 다른 글
파이썬 초보 프로젝트 게임 만들기 2편 - 점프하는 공룡 게임. (0) | 2021.08.20 |
---|---|
파이썬 실행 파일 생성하기 - pycharm 실행 파일 만들기. (0) | 2021.08.20 |
파이썬 초보 프로젝트 엑셀 다루기 1편 - 파이썬으로 엑셀 파일 읽어오기 (0) | 2021.08.16 |
파이썬 초보 프로젝트 게임 만들기 1편 - pygame 시작 하기. (0) | 2021.08.14 |
파이썬 반복문 - python for 문이란?, while이란? (0) | 2021.08.14 |