📜  在 jupyter notebook 中显示 jpg - Python 代码示例

📅  最后修改于: 2022-03-11 14:47:07.781000             🧑  作者: Mango

代码示例1
from IPython.display import Image, display

listOfImageNames = ['/path/to/images/1.png',
                    '/path/to/images/2.png']

for imageName in listOfImageNames:
    display(Image(filename=imageName))