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
- 날짜
- MS-SQL
- MySQL
- 리눅스
- javascript
- Linux
- ASP
- port
- flutter
- PyQt5
- python
- 라즈베리파이
- ubuntu
- 유니티
- 함수
- 다이어트
- 맛집
- Unity
- GIT
- PyQt
- urllib
- node.js
- swift
- mssql
- tensorflow
- PER
- pandas
- IOS
- Excel
- sqlite
Archives
목록2018/09/11 (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 print(ws.Cells(1,1).Value) excel.Quit() 결과 : ㅎㅎㅎ
랭귀지/python
2018. 9. 11. 11:00