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 |
---|---|---|---|
44 | 2023-12-27 13:58:38 | 55.62 | 94% |
23 | 2023-12-13 13:02:28 | 61.87 | 96.2% |
19 | 2023-08-01 06:54:04 | 58.66 | 94.9% |
11 | 2023-07-26 07:14:07 | 63.67 | 94.4% |
9 | 2023-07-26 07:09:17 | 59.74 | 94% |
6 | 2023-07-26 07:05:38 | 55.37 | 95.5% |