python 읽기 및 쓰기 복사 파일 삭제 작업 방법 상세 실례 총결산
python 파일 읽기 작업
1.read 세 가지 다른 방식
f = open('hello.txt') #'hello.txt'
while True:
text = f.readline() # ,
if text:
print(text)
else: # ,
print(len(text))
break
f.close() # ,
f = open("hello.txt")
line_list = f.readlines() # ,
print(type(line_list))
for line in line_list:
print(line)
f.close()
f = open("hello.txt")
s = f.read() # ,
print(type(s))
for line in s:
print(line,end=' ')
f.close()
python 파일 쓰기 작업
2. writer의 두 가지 일반적인 기본 방식
f = open('poet.txt','w',encoding='utf-8') #
f.write(' ,python') #
print(" , !")
f.close()
f = open("poet.txt",'a+')
print(f.read())
fruits = ['appple
','banana
','orange
','watermelon
']
f.writelines(fruits)
print(' ')
f.close()
python 파일 삭제 작업
3. 삭제 삭제
import os,os.path
if os.path.exists("sd.txt"):
os.remove("sd.txt")
print(" ")
else:
print(' ')
동일한 파일의 동일한 파일 형식 삭제
import os
files = os.listdir('.') #
for filename in files:
point_index = filename.find(".") # '.‘
if filename[point_index + 1:] == "txt": # 'txt‘
os.remove(filename) #
python 파일 복사 작업
4. 복사
첫 번째 방법
srcFile = open("a.txt") #
destFile = open("a_copy.txt",'w') #
destFile.write(srcFile.read()) #
destFile.close()
srcFile.close()
print(' ')
두 번째 사용 모듈
with open("a.txt") as src,open("a_copy.txt",'w') as dest:
dest.write(src.read())
print(' !')
python 읽기와 쓰기, 복사 파일 삭제 작업 방법에 대한 자세한 실례는 아래의 링크를 보십시오
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
로마 숫자를 정수로 또는 그 반대로 변환그 중 하나는 로마 숫자를 정수로 변환하는 함수를 만드는 것이었고 두 번째는 그 반대를 수행하는 함수를 만드는 것이었습니다. 문자만 포함합니다'I', 'V', 'X', 'L', 'C', 'D', 'M' ; 문자열이 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.