我有一个文本文件,其中我有大约20多个网址的图片我想使用所有这些网址的文本文件并使用python在网络浏览器中显示图片?
答案 0 :(得分:0)
如果您使用的是python 2.7:
您需要创建html文件!
f = open("images.txt","r") #all url images
images = f.readlines()
some_file = open("all_images.html","w")
for i in range(0,len(images)):
some_file.write(str("<img src = "+images[i]+">"+"\n"))
some_file.close()
f.close()
我希望这会对你有所帮助!