Pyautogui-如何键入随机单词或数字(“错误:对象不可迭代”)?

时间:2018-12-04 16:25:16

标签: python typeerror iterable pyautogui

我对python很陌生。我希望pyautogui键入一个随机数字或单词。我已经这样尝试过:

a = random.randint(1,10)
pyautogui.typewrite(a)

但它返回以下错误:

TypeError: 'int' object is not iterable

pyautogui不支持变量,还是我必须使用其他格式?

非常感谢

1 个答案:

答案 0 :(得分:0)

pyautogui.typewrite接受字符串作为其参数。因此,如果将数字(int)转换为字符串,则可以正常打印:

a = random.randint(1,10)
pyautogui.typewrite(str(a))