python编程快速上手之第18章实践项目参考答案(18.4.2)

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python编程快速上手之第18章实践项目参考答案(18.4.2)相关的知识,希望对你有一定的参考价值。

import pyautogui, time, os, pyautogui


os.chdir(C:\\Users\\Administrator\\Python35-32\\test\\kuaisu)
guests = open(sendMesTo.txt)#打开好友名单
for n in guests:  
  pyautogui.click(1300, 1, button=left) #用的是QQ,鼠标移动到屏幕右上角,QQ弹出窗口
  time.sleep(1)
  pyautogui.typewrite(n);pyautogui.press(enter)   #输入好友名并按Enter
  time.sleep(2)
  if pyautogui.locateOnScreen(foundNone.png) == None :   #如果没有好友则会弹出搜索窗,如未匹配到搜索窗图片,则输入Hello
    pyautogui.typewrite(Hello)
    pyautogui.keyDown(ctrlleft); pyautogui.press(enter);pyautogui.keyUp(ctrlleft)
    time.sleep(1)
    print(n)
  else :
    print(Not found %s  %n)   #如果匹配到搜索窗图片,则输入 Not found

 

以上是关于python编程快速上手之第18章实践项目参考答案(18.4.2)的主要内容,如果未能解决你的问题,请参考以下文章

python编程快速上手之第18章实践项目参考答案(18.4.2)

python编程快速上手之第3章实践项目参考答案

python编程快速上手之第6章实践项目参考答案

python编程快速上手之第10章实践项目参考答案(11.11.2)

python编程快速上手之第15章实践项目参考答案(17.7.2)

python编程快速上手之第5章实践项目参考答案