我有一个项目
我正在制作一个文本浏览器,我需要帮助
我有一个历史文件,每个url和时间,放在历史文件中,如:
www.youtube.com 2016-06-29 13:47:15.986000
www.youtube.com 2016-06-29 13:47:22.416000
www.youtube.com 2016-06-29 13:47:31.962000
www.youtube.com 2016-06-29 13:47:40.713000
www.youtube.com 2016-06-29 13:47:49.193000
我需要做一个remove
函数,得到一个url,并删除所有的行
(以"n"分隔的行)
是历史文件的代码:
def Update_history(url):
thistime = str(datetime.datetime.now())
urlat = url + " " + thistime
history = open("somthing.txt" , "w")
history.write(urlat)
history.write("n")
请帮我,这是为了明天!
如果您试图从文件中删除这些行,请尝试:
import os
def removeUrl(url):
url_file = "url.txt"
fileIn = open(url_file, 'r')
fileOut = open("temp.txt", 'w')
for line in fileIn:
if url not in line:
fileOut.write(line)
fileIn.close()
fileOut.close()
os.remove(url_file)
os.rename("temp.txt", url_file)
removeUrl("www.youtube.com")