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 __..