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 |
---|---|---|---|
63 | 2022-12-16 04:23:14 | 51.25 | 96% |
62 | 2022-12-16 04:21:06 | 47.81 | 94% |
57 | 2022-12-15 14:20:18 | 43.61 | 91% |
40 | 2022-12-15 11:56:57 | 40.69 | 92% |
27 | 2022-06-07 03:34:09 | 28.11 | 92% |
11 | 2022-02-11 16:30:05 | 29.03 | 91% |