我不能在Python中使用韩语pyautogui.typewrite

时间:2018-04-24 12:15:55

标签: python pyautogui

enter image description here

对不起,我说英语不好。

如图所示,执行英语,但不执行韩语。

为什么以及解决方案是什么?

import pyautogui 
pyautogui.typewrite('Hello world')
pyautogui.typewrite('안녕하세요')

file = open('test.txt') #Files with Korean characters
pyautogui.typewrite(file.read())

1 个答案:

答案 0 :(得分:0)

pyautogui文档说:

  

typewrite()功能   主键盘功能是typewrite()。此函数将键入字符串中传递的字符。要在按下每个字符键之间添加延迟间隔,请为interval关键字参数传递int或float。   您只能使用typewrite()按下单字符键,因此您无法按下ShiftF1键。

我认为这同样适用于alt序列。