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 |
---|---|---|---|
23 | 2023-04-25 05:24:06 | 54.65 | 96% |
21 | 2022-07-17 15:33:26 | 39.08 | 92% |
17 | 2022-03-08 17:15:53 | 43.86 | 95% |
15 | 2022-02-17 14:55:46 | 41.97 | 94% |
14 | 2022-01-15 16:16:12 | 42.16 | 95% |
4 | 2021-12-23 11:23:08 | 40.55 | 93% |