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
- 맛집
- IOS
- sqlite
- swift
- urllib
- Excel
- PER
- ubuntu
- Linux
- flutter
- 리눅스
- GIT
- 라즈베리파이
- MS-SQL
- PyQt
- tensorflow
- pandas
- javascript
- Unity
- ASP
- 유니티
- MySQL
- 다이어트
- port
- 함수
- node.js
- PyQt5
- 날짜
- python
- mssql
Archives
목록2018/09/10 (1)
아미(아름다운미소)
python excel 셀에 컬러 입히기 # -*- 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.Open('C:\\Users\\bhm\\Desktop\\input.xlsx') ws = wb.ActiveSheet ws.Cells(1,2).Value = "is" ws.Range("C1").Value = "good" ws.Range("C1").Interior.ColorIndex = 10 ws.Range("A2:C2").Interior...
랭귀지/python
2018. 9. 10. 08:30