python编程快速上手之第18章实践项目参考答案(18.4.1)
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python编程快速上手之第18章实践项目参考答案(18.4.1)相关的知识,希望对你有一定的参考价值。
import pyautogui, time print(‘Press Ctrl-C to quit.‘) try: while True: time.sleep(10) pyautogui.moveRel(1, 0, duration=0.25) time.sleep(10) pyautogui.moveRel(-1, 0, duration=0.25) except KeyboardInterrupt: print(‘\nDone.‘)
以上是关于python编程快速上手之第18章实践项目参考答案(18.4.1)的主要内容,如果未能解决你的问题,请参考以下文章
python编程快速上手之第18章实践项目参考答案(18.4.2)
python编程快速上手之第10章实践项目参考答案(11.11.2)