Python|python踩坑日记2 unexpected token‘open‘

win10使用VS2017Python3.10(64-bit)环境
国内网站没有找到很有用的信息,在github上有一个相同issue,感兴趣的可以看看,大概率是编译器版本问题,没有匹配对应上。
Python|python踩坑日记2 unexpected token‘open‘_第1张图片
我直接导入了os,sys规避了这个问题

import os, sys
fd = os.open('pyImageData.raw', os.O_RDWR|os.O_CREAT)
for i in imageData:
    os.write(fd,i)
os.close(fd)

你可能感兴趣的:(Python,python)