반응형
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#특정 폴더이름 불러오기 / 엑셀저장하기
import os
import csv
file_list = os.listdir('dm_sang')
file_save = []
for file in file_list :
file_sa = []
file_sa.append(file)
print(file)
file_save.append(file_sa)
with open('상품명리스트.csv','w+',encoding='euc-kr',newline='') as f :
writer = csv.writer(f)
writer.writerows(file_save)
|
cs |
반응형
'파이썬 (pythoon)' 카테고리의 다른 글
[python] selenium / 쇼핑몰 제품 크롤링 / 엑셀 저장 / openpyxl workbook/ append / find_element_by_class (0) | 2021.07.09 |
---|---|
[python study] tkinter 파이썬 gui - cookbook (0) | 2021.06.25 |
[python] Tk() tkinter GUI 기본구성 - 텍스트박스 실시간 log 표기(스크롤 연동) (0) | 2021.05.16 |
[python] openpyxl 셀의 합계 값, 수량 / list 총 합계 구하기 (0) | 2021.05.14 |
[python] 파이썬 폴더 내에 폴더이름 변경하기 (001,002,003...) (0) | 2020.07.09 |