[Tutor] how to send "ctrl+a+c" with python

eryksun eryksun at gmail.com
Wed Jan 22 15:35:08 CET 2014


On Wed, Jan 22, 2014 at 8:49 AM, lei yang <yanglei.fage at gmail.com> wrote:
>
> I want to use pexpect to send "ctrl+a+c"

What's ctrl+a+c? If this is for screen, then I think you mean ctrl+a c:

    sendcontrol('a')
    send('c')


More information about the Tutor mailing list