BIG
파이썬으로 텍스트 파일 읽기
# 파일을 읽기 모드로 오픈한다.
objFile = open("[ Target File Path ]", 'r')
# 파일의 모든 내용을 한꺼번에 읽는다.
data = objFile.read()
# 읽은 내용을 출력한다.
print(data)
# 파일을 닫는다.
objFile.close()
LIST
'!!...Python > !!...PythonStudy' 카테고리의 다른 글
[python]Sample Code: Get Directory Path Using Select File Dialog (0) | 2022.09.29 |
---|---|
[python]SampleCode: read text file line by line use while (0) | 2022.09.28 |
[python]SampleCode:get string length in python (0) | 2022.09.24 |
[python]Sample Code: Get File Path Using Select File Dialog (0) | 2022.09.19 |
[python] MariaDB ( mySql ) connection sample (0) | 2022.07.22 |