파일 오픈 함수
with open("demofile.txt", "r") as f:
data = f.readlines()
1. 파일 열기 함수
- 상대경로 파일 열기
f = open("demofile.txt", "r")
print(f.read())
- 절대경로 파일 열기
f = open("D:\\myfiles\welcome.txt", "r")
print(f.read())
2. readline
f = open("demofile.txt", "r")
print(f.readline())
3.오픈한 파일 시스템 상에 오픈 상태로 두지 말고 닫기 (⭐방법 1)
- 방법 1
f = with open("demofile.txt", "r")
print(f.readline())
- 방법 2
f = open("demofile.txt", "r")
print(f.readline())
f.close()
"r" - Read - Default value. Opens a file for reading, error if the file does not exist
"a" - Append - Opens a file for appending, creates the file if it does not exist
"w" - Write - Opens a file for writing, creates the file if it does not exist
"x" - Create - Creates the specified file, returns an error if the file exists
"t" - Text - Default value. Text mode
"b" - Binary - Binary mode (e.g. images)
'기술스택 > Python' 카테고리의 다른 글
[ 파이썬 ] 람다 표현식 (0) | 2023.09.18 |
---|---|
[ 파이썬 ] *args 와 **kwargs (0) | 2023.09.07 |
[ 파이썬 ] 데이터 타입 Data Type (0) | 2023.09.05 |
[ 파이썬 ] if for while문에서 콜론 : 과 들여쓰기 indentation (0) | 2023.09.04 |
[ 파이썬 ] 딕셔너리 dictionary (0) | 2023.09.04 |