250x250
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
- 파이썬
- __sub__
- 오버라이딩
- mro()
- choice()
- __getitem__
- randrange()
- count()
- inplace()
- __annotations__
- fileinput
- locals()
- Database
- JS
- discard()
- node.js
- items()
- shuffle()
- fnmatch
- decode()
- __len__
- remove()
- glob
- CSS
- MySQL
- MySqlDB
- HTML
- shutil
- View
- zipfile
Archives
- Today
- Total
목록tarfile (1)
흰둥이는 코드를 짤 때 짖어 (왈!왈!왈!왈!왈!왈!왈!왈!왈!왈!왈!)

1.파일 읽기 및 저장하기 1-1. fileinput 텍스트 파일을 읽고, 쓰고, 저장하는 기능을 편리하게 사용할 수 있도록 해주는 라이브러리 여러개의 파일을 읽어서 수정할 수 있음 In [1]: import fileinput import os import glob In [2]: # 형재 경로 확인 os.getcwd() Out[2]: 'C:\\LeeCoding\\Python\\Jupyter' In [3]: # 디렉토리 내 파일 확인 os.listdir(os.getcwd()) Out[3]: ['.ipynb_checkpoints', '24 파일 입출력 라이브러리.ipynb', 'sample'] In [4]: # 경로 설정 path = 'sample/' In [5]: # glob(): 해당 경로의 파일 이름을..
파이썬 기초
2023. 3. 14. 16:21