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 |
---|---|---|---|
49 | 2022-07-29 07:48:47 | 67.17 | 96% |
42 | 2022-07-26 08:55:43 | 66.32 | 96% |
28 | 2022-07-11 02:58:40 | 63.72 | 96% |
24 | 2022-07-11 02:53:04 | 64.12 | 96% |
2 | 2022-07-08 11:21:14 | 58.23 | 94% |