I create a png file and view it on macOS with
[...]
image.save("mandel.png", "PNG")
p = subprocess.run(["open", "mandel.png"], capture_output=True)
print(p.stdout.decode(),p.stderr.decode())
But what have I to choose for windows? "open" doesn't work on Win10.