Computer >> 컴퓨터 >  >> 프로그램 작성 >> Python

Python을 사용하여 텍스트 파일에 한 줄을 작성하는 방법은 무엇입니까?


쓰기 기능을 사용하여 파일에 줄을 간단히 쓸 수 있습니다.

예를 들어

f = open('myfile', 'w')
f.write('hi there\n')  # python will convert \n to os.linesep
f.close()  # you can omit in most cases as the destructor will call it

또는 Python 2.6 이상부터 사용할 수 있는 print() 함수를 사용할 수 있습니다.

from __future__ import print_function  # Only needed for Python 2
print("hi there", file=f)

Python 3의 경우 print() 함수가 기본값이므로 가져오기가 필요하지 않습니다.