python使用系统打开文件、显示图片
import platform
userPlatform=platform.system() # 获取操作系统
fileDir='./Desktop/aaa.png'
if userPlatform == 'Darwin': # Mac
subprocess.call(['open', fileDir])
elif userPlatform == 'Linux': # Linux
subprocess.call(['xdg-open', fileDir])
else: # Windows
os.startfile(fileDir)