1 Star 0 Fork 14

Joe/ant-learn-python-100P

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
p044_auto_send_talk.py 560 Bytes
一键复制 编辑 原始数据 按行查看 历史
cztps2 提交于 2021-06-06 00:22 . xx
content = """
我希望睡前最后看到的是你。
请你当我手心里的宝。
不知道爱你算不算是一个贴心的理由。
好笑吗?身边没你,好怪,陪我一生一世好吗。
和你在一起只是我不想给任何人机会。
"""
import pyautogui
import pyperclip
import time
time.sleep(5)
for line in list(content.split("\n")) * 100:
if line:
print(line)
pyautogui.click(378, 745)
pyperclip.copy(line)
pyautogui.hotkey("command", "v")
pyautogui.typewrite("\n")
time.sleep(0.1)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/stayhungry2022/ant-learn-python-100P.git
[email protected]:stayhungry2022/ant-learn-python-100P.git
stayhungry2022
ant-learn-python-100P
ant-learn-python-100P
master

搜索帮助