import sys
成都創(chuàng)新互聯(lián)長期為上千客戶提供的網站建設服務,團隊從業(yè)經驗10年,關注不同地域、不同群體,并針對不同對象提供差異化的產品和服務;打造開放共贏平臺,與合作伙伴共同營造健康的互聯(lián)網生態(tài)環(huán)境。為撫松企業(yè)提供專業(yè)的網站設計、成都網站制作,撫松網站改版等技術服務。擁有10多年豐富建站經驗和眾多成功案例,為您定制開發(fā)。
'''
#low 方法 適合讀小文件
for index,line in enumerate(data.readlines()):#取出下標和對應的值
if index==9:
print("----ooo----")
continue
print(line.strip())
#high bige 度一行覆蓋一行,常用牛逼方法
count=0
for loo in data:
if count==4:
print('-----You will die-----')
count+=1
continue
print(loo)
count+=1
'''
#光標使用
#f=open("yesok2",'r+',encoding="utf-8")#文件句柄 讀寫,在最后追加
#f=open("gc.txt",'w+',encoding="utf-8")#文件句柄 寫讀,覆蓋原文件(創(chuàng)建新文件)后寫。只會在最后追加。文件觀后再打開寫入會覆蓋
#f=open("yesok2",'a+',encoding="utf-8")#文件句柄 追加讀寫
#f.close()
#f1.close()
#find_str=sys.argv[1]
#replace_str=sys.argv[2]
#for line in f:
#if find_str in line:
#line=line.replace(find_str,replace_str)
#f1.write(line)
#f.close()
#f1.close()
with open("gege",'r',encoding="utf-8") as f:
for line in f:
print(line) #執(zhí)行完自動關閉文件
with open("gege",'r',encoding="utf-8") as f,open("gege",'r',encoding="utf-8") as f:
pass
with open("gege",'r',encoding="utf-8") as f,\
open("gege",'r',encoding="utf-8") as f2:
for line in f:
print(line) #執(zhí)行完自動關閉文件