您好,登錄后才能下訂單哦!
import sys
'''
#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")#文件句柄 寫讀,覆蓋原文件(創建新文件)后寫。只會在最后追加。文件觀后再打開寫入會覆蓋
#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) #執行完自動關閉文件
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) #執行完自動關閉文件
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。