I would like to know if there is a way to type things with Python using the win32api module. For example, if I want to type in the phrase "Happy Pi Day" into Microsoft Word every three seconds, I would have something like import time
while 1:
#types Happy Pi Day
time.sleep(3)
However, I do not know what the command is for the "type" function.