📜  如何编写脚本以在 python 代码示例中显示图像

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

代码示例1
>>> from PIL import Image                                                                                
>>> img = Image.open('test.png')
>>> img.show()