반응형
파이썬 코드 한줄로 파일 열기¶
%%writefile
매직키워드를 사용하여 테스트 txt 파일을 아래와 같이 만들겠습니다.- 클릭시 %%writefile 에대한 설명을 볼 수 있습니다.
In [1]:
%%writefile test.txt
hello world
close window
push the button
Overwriting test.txt
- open 매서드를 한줄로 표현하기
In [2]:
lines = open("test.txt", "r").read().strip().split('\n')
lines
Out[2]:
['hello world', 'close window', 'push the button']
- [참고] 일반적으로 open 메서드를 표현하는 방법
In [3]:
with open("test.txt", 'r', encoding='utf-8') as f:
lines = f.read().strip().split("\n")
lines
Out[3]:
['hello world', 'close window', 'push the button']
반응형
'python' 카테고리의 다른 글
파이썬 절대 경로 추출법 os.getcwd (0) | 2023.07.30 |
---|---|
파이썬 파일 확장자로 파일이름 가져오기 glob.glob (0) | 2023.07.30 |
주피터노트북에서 텍스트 파일 만들기 (0) | 2023.07.29 |
판다스 데이터 훓어보기 describe, info, dtype (0) | 2023.07.29 |
파이썬 패키지 경로 찾기 (0) | 2023.07.29 |
댓글