홈
블로그
책
포럼
It will seem like simplified English.
1 시간 전
몇 개의 언어의 문법을 결합한다면
3 분 전
As a skeptical Cambridge friend of mine occidental.
import openpyxl as excel book = excel.Workbook() sheet = book.active sheet['A11'] = 'ABC' book.save('hello.xlsx')
import openpyxl as excel book = excel.load_workbook('hello.xlsx') sheet = book.worksheets[0] cell = sheet["A11"] print(cell.value)
ABC