python 파충류 txt 문서 읽 기와 쓰기

6998 단어 파충txt
python 파충류 의 다양한 저장 방식 txt
간단하게 그림 다운로드:
from urllib import request
url="http://pic.netbian.com/uploads/allimg/180912/221007-15367614072cc2.jpg"
request.urlretrieve(url,"    .jpg") #     

txt 에 저장
디 렉 터 리 를 판단 하고 있 으 면 열 고 새로 만 들 지 않 았 습 니 다.
import os
if os.path.exists('D:\Python\  \    '):
    os.chdir('D:\Python\  \    ')
else:
    os.mkdir('D:\Python\  \    ')
    os.chdir('D:\Python\  \    ')

1. txt 를 쓰 면 문자열 만 쓸 수 있 습 니 다.
myfile = open('mytxt.txt','w',encoding='utf-8')
myfile.write('    txt')
myfile.close()

#2.  txt,    
with open('mytxt.txt','a',encoding='utf-8') as file:
    file.write('
123465'
)

\ # my txt. txt 에 99 곱셈 표를 추가 로 기록 합 니 다.
with open('mytxt.txt','a',encoding='utf-8') as file:
   file.write('
'
) for i in range(1,10): for j in range(1,i+1): num = str(j)+'x'+str(i)+'='+str(j*i)+'\t' file.write(str(num)) file.write('
'
)

\ # txt 읽 기
with open('mytxt.txt','r',encoding='utf-8')as file:
    data = file.read()
print(data)

좋은 웹페이지 즐겨찾기