import os import sys def run(program, *args): pid = os.fork() if not pid: os.execvp(program, program + args) return os.wait()[0] run("python", "hello.py")
Game | Time | WPM | Accuracy |
---|---|---|---|
50 | 2023-08-17 20:51:29 | 55.06 | 94.6% |
38 | 2021-12-25 13:12:43 | 60.05 | 94% |
35 | 2021-12-25 13:06:08 | 54.35 | 95% |