반응형
python 파일 입출력
python에서 파일을 찾고, 파일이 없을시 except 출력, 있다면 파일을 열어서 본문을 수행하고 파일 닫고 종료.
try :
list_file = open(list_file_name)
except OSError :
print('can\'t find '+list_file_name)
else :
with listfile :
for line in listfile :
# do somthing
반응형
'Computer Science > python' 카테고리의 다른 글
Primer 서열 분석을 위한 python 코드 (0) | 2021.08.17 |
---|---|
String Format으로 길이 고정하기 (0) | 2020.06.24 |
python multi-level argparse (0) | 2019.07.12 |
Python 설치 및 실행하기 (0) | 2017.08.16 |
cannot mkdir R_TempDir 에러 (0) | 2016.09.07 |