使用python3.10.4写一个自动截图的shell
全部代码在windows上能正常运行得到我要的结果
但在Mac上则出现了问题
a = pg.locateOnScreen(r'wd.png')
print(a[0],a[1],a[0]+a[2],a[1]+a[3])
# print(a)
x, y = pg.locateCenterOnScreen('mouse.png')
print(x, y)
显示
TypeError: 'NoneType' object is not subscriptable
改成print(a)后显示
None
请问这个问题该如何解决