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 |
---|---|---|---|
188 | 2024-02-12 10:43:16 | 85.17 | 97.1% |
154 | 2021-08-24 20:58:13 | 67.38 | 96% |
92 | 2019-01-30 13:10:45 | 69.56 | 98% |
81 | 2019-01-29 09:18:55 | 68.37 | 97% |
77 | 2019-01-29 09:03:48 | 67.60 | 98% |
65 | 2019-01-28 10:20:41 | 63.38 | 95% |
44 | 2019-01-28 06:31:20 | 70.32 | 97% |
36 | 2019-01-28 06:08:25 | 47.56 | 94% |
3 | 2019-01-27 22:41:32 | 53.35 | 94% |
2 | 2019-01-27 22:38:29 | 51.80 | 95% |