[python 문법] file

dyPenguin·2020년 10월 17일
0

Python

목록 보기
4/7
post-custom-banner

colab link: file.ipynb

파일 읽기/쓰기

파일의 열기 모드

  • r: 읽기 w: 쓰기 a: 추가

파일을 open 한 후에는 반드시 close 해야 함.

f = open('/content/output/hello.txt', 'w') # 파일 열기
f.write("Hello world!")
f.close() # 파일 닫기
  • readline: 한줄씩 읽어오기
f = open('/content/output/hello.txt', 'r')
print(f.readline())
f.close()

> Hello world!
f = open('/content/output/exam01_hello.py', 'r')
while 1: #1 or True 도 가능.
  line = f.readline()
  if not line: break
  print(line)
f.close()

> print('Hello World!')



  a=10

  b=20

  sum=a+b

  print(sum)
  • read
f = open('/content/output/exam01_hello.py', 'r')
data = f.read() # 파일 읽기
f.close() # 파일 닫기
print(data)
 
> print('Hello World!')

  a=10
  b=20
  sum=a+b
  print(sum)
profile
멋진 개발자가 되고픈 펭귄입니다.
post-custom-banner

0개의 댓글