반응형
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
- string
- Redshift
- list
- GIT
- Python
- dataframe
- PySpark
- Github
- google apps script
- PANDAS
- PostgreSQL
- Mac
- Java
- Google Excel
- SQL
- Tkinter
- 파이썬
- math
- hive
- django
- Apache
- matplotlib
- gas
- Google Spreadsheet
- array
- Kotlin
- numpy
- Excel
- c#
Archives
- Today
- Total
목록cell (1)
달나라 노트
Python Pandas & openpyxl : cell object (cell 객체)
openpyxl의 cell 객체를 이용하면 특정 cell의 다양한 정보를 가져올 수 있습니다. import pandas as pd dict_test = { 'col1': [1, 2, 3, 4, 5], 'col2': ['a', 'b', 'c', 'd', 'e'], 'col3': [1234, 0.27383720, 39372, None, 102947291.293472], 'col4': [0.9, 0.5238, 0.13, 0.0028, 1024.29278], } df_test = pd.DataFrame(dict_test) xlsx_writer = pd.ExcelWriter('test.xlsx', engine='openpyxl') df_test.to_excel(xlsx_writer, sheet_name='test..
Python/Python Pandas
2024. 2. 26. 22:37