You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
import time
|
|
import keyboard
|
|
|
|
time.sleep(3) # 等待3秒
|
|
with open(r'C:\Users\唐志超\Desktop\pp.txt', encoding='utf-8') as file:
|
|
for line in file:
|
|
keyboard.write(line)
|
|
|
|
|
|
|