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 | 31 | 
													Tags
													
											
												
												- node.js
- tensorflow
- flutter
- ubuntu
- 유니티
- 맛집
- ASP
- 함수
- 리눅스
- pandas
- Linux
- swift
- urllib
- GIT
- mssql
- javascript
- port
- PyQt
- 날짜
- IOS
- PER
- 다이어트
- Excel
- 라즈베리파이
- Unity
- PyQt5
- sqlite
- python
- MS-SQL
- MySQL
													Archives
													
											
											
											
											아미(아름다운미소)
python 엑셀(excel) 파일 읽기 본문
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' 카테고리의 다른 글
| Python PyQt 이벤트 처리 (0) | 2018.09.13 | 
|---|---|
| python PyQt (0) | 2018.09.12 | 
| python excel 셀에 컬러 입히기 (0) | 2018.09.10 | 
| python 엑셀(excel) 다루기 (0) | 2018.09.09 | 
| Python directory search and counting by specific extensions (0) | 2018.09.08 | 
			  Comments