Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 | 29 |
30 |
Tags
- pandas
- GIT
- javascript
- 맛집
- tensorflow
- PyQt
- port
- 함수
- PER
- MySQL
- Excel
- 날짜
- ubuntu
- sqlite
- MS-SQL
- 유니티
- urllib
- python
- ASP
- mssql
- IOS
- Linux
- 리눅스
- 라즈베리파이
- PyQt5
- Unity
- node.js
- flutter
- 다이어트
- swift
Archives
목록2018/09/09 (1)
아미(아름다운미소)
A1 셀에 값 입력하기 # -*- coding: utf-8 -*- ''' Created on 2018. 9. 6. @author: bhm ''' import win32com.client excel = win32com.client.Dispatch("Excel.Application") excel.Visible = True wb = excel.Workbooks.Add() ws = wb.Worksheets("Sheet1") ws.Cells(1, 1).Value = "hello python" wb.SaveAs('C:\\Users\\bhm\\Desktop\\test.xlsx') excel.Quit()
랭귀지/python
2018. 9. 9. 08:00