gpt4 book ai didi

python - SendKeys中使用的变量在Python中没有空格?

转载 作者:太空宇宙 更新时间:2023-11-03 19:20:00 25 4
gpt4 key购买 nike

我正在Python中使用SendKeys在另一个程序(记事本)中编写,它正在其中写入一个变量。但是,当它在记事本中打印变量时,它不会打印字符串中的空格。代码如下:

import SendKeys 

if msg['from'] == '********@live.com':
SendKeys.SendKeys("""
{LWIN}
{PAUSE .25}
notepad.exe{ENTER}
{PAUSE 1}
%s
""" % (body))

现在,假设变量“body”是“Test test”——Python 将该变量打印为“Test test”,而当 SendKeys 在记事本中键入该变量时,它将该变量打印为“Testtest”。是否有其他方法可以打印 SendKeys 中包含空格的变量?

最佳答案

根据the documentation , with_spaces 应该可以解决问题。

import SendKeys 

if msg['from'] == '********@live.com':
SendKeys.SendKeys("""
{LWIN}
{PAUSE .25}
notepad.exe{ENTER}
{PAUSE 1}
%s
""" % (body), with_spaces=True)

不过,我希望 Ghu 您不是通过 GUI 启动记事本,而只是以正常的 Python 方式将数据写入文件......

关于python - SendKeys中使用的变量在Python中没有空格?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10078645/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com