我正在使用Python jupyter notebook。让我们说下面的代码正在使用另一个文件从URL中提取数据。
urls = []
for fup in data:
s_f = fup
img_temp1 = s_f[7:]
img_temp2 = s_f[6:7]
url = ("https://google.com/%s/%s/%s/s_%s.jpg" %(img_temp1, img_temp2, s_f, s_f))
urls.append(url)
urls
数据存储在可变网址中,例如:
['https://google.com/3/7.jpg',
'https://google.com/6/8.jpg',
'https://google.com/1/5.jpg',
'https://google.com/5/2.jpg',
'https://google.com/9/2.jpg',
'https://google.com/0/6.jpg',
'https://google.com/1/2.jpg',]
我希望水平显示图像。现在我可以使用
垂直显示它from IPython.display import Image
display(Image(url
in for循环。 `
是否有人能够帮助我水平显示图像,或者每行显示3张图像?感谢所有帮助