[Python] 파일 입출력

Sireal·2021년 11월 11일
0

Python

목록 보기
10/14
post-thumbnail

open

  • 파일을 열때 사용
    f = open('/content/drive/MyDrive/dj-2021/temp.txt','r')
    
    lines = f.readlines()
    for line in lines:
       print(line)

with open as

  • 파일 open read close를 한번에 다 해준다.
with open('/content/drive/MyDrive/dj-2021/temp.txt','r') as >file :
   for line in file:
     print(line)

profile
🚄계속 앞으로🚄

0개의 댓글