Using python to run notepad [closed]

0

How to use python to open the notepad, and then write a message, and finally using python execute the command ctrl + z

    
asked by anonymous 19.02.2018 / 20:48

1 answer

0

You can use PyAutoGUI , which provides ways to control your mouse and keyboard.

Or run commands through subprocess .

    
20.02.2018 / 01:37