如何在html页面中使用文本文件图像URL来显示图像?

时间:2017-01-29 00:13:35

标签: python html python-2.7 text-files

我有一个文本文件,其中我有大约20多个网址的图片我想使用所有这些网址的文本文件并使用python在网络浏览器中显示图片?

1 个答案:

答案 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()

我希望这会对你有所帮助!