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
- 파이썬
- python openpyxl
- 파이썬 랜덤 숫자
- 나스닥
- line notify
- 파이썬 메시지
- 다우지수
- 주식
- 시가총액
- python bot
- OpenPyXL
- python xlrd
- 파이썬으로
- python xlwt
- 파이썬 로또 번호
- Excel
- 알림 봇
- python excel
- 코스닥 지수
- 나스탁
- 야후 파이낸스
- yahoo finace
- 국내주식
- 코스피
- python directory
- 환율
- 코스피 지수
- 코스닥
- python
- python filelist
Archives
- Today
- Total
목록FileList (1)
keilab
현재 디렉터리에서 파일 목록 출력하기
현재 디렉토리 파일 리스트 현재 디렉토리에서 특정 확장자의 파일 목록을 가져오는 코드 [filelist.py] #-*- coding:utf-8 -*- import os.path folder=os.getcwd() print 'current directory :%s' % folder for filename in os.listdir(folder): ext=filename.split('.')[-1] if ext == 'exe': print filename [출력결과] current directory :C:\Users\K\Desktop\malware Lab01-01.exe Lab01-02.exe Lab01-03.exe Lab01-04.exe
Python
2018. 8. 9. 18:30